Tree

case class Tree[T](context: Context, items: Seq[T], children: Seq[Tree[T]])
Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def filter(p: T => Boolean): Tree[T]
def foreach[U](f: T => U): Unit
def map[S](f: T => S): Tree[S]
def scopes: Iterable[(Context, Seq[T])]
override def toString: String
Definition Classes
Any

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product