Chain

de.rmgk.Chain
See theChain companion object
enum Chain[+A] extends Iterable[A] with IterableOps[A, Chain, Chain[A]] with IterableFactoryDefaults[A, Chain]

Attributes

Companion:
object
Graph
Supertypes
trait Enum
trait Serializable
trait Product
trait Equals
trait Iterable[A]
trait Iterable[A]
trait IterableFactoryDefaults[A, Chain]
trait IterableOps[A, Chain, Chain[A]]
trait IterableOnceOps[A, Chain, Chain[A]]
trait IterableOnce[A]
class Object
trait Matchable
class Any
Known subtypes
case one[A]
case Wrap[A]
case Concat[A]

Members list

Concise view

Type members

Enum entries

final case class Concat[A](left: Chain[A], right: Chain[A]) extends Chain[A]
final case class Wrap[A](underlying: Iterable[A]) extends Chain[A]
case case nil extends Chain[Nothing]
final case class one[A](elem: A) extends Chain[A]