LayerTree

sealed abstract class LayerTree[+A] extends Product with Serializable
Companion:
object
trait Product
trait Equals
class Object
trait Matchable
class Any
class ComposeH[A]
class ComposeV[A]
object Empty.type
class Value[A]

Value members

Concrete methods

def ++[A1 >: A](that: LayerTree[A1]): LayerTree[A1]
def >>>[A1 >: A](that: LayerTree[A1]): LayerTree[A1]
def fold[B](z: B, value: A => B, composeH: (B, B) => B, composeV: (B, B) => B): B
def map[B](f: A => B): LayerTree[B]
def toList: List[A]
def toSet[A1 >: A]: Set[A1]

Inherited methods

def canEqual(that: Any): Boolean
Inherited from:
Equals
def productArity: Int
Inherited from:
Product
def productElement(n: Int): Any
Inherited from:
Product
def productElementName(n: Int): String
Inherited from:
Product
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def productPrefix: String
Inherited from:
Product