Packages

p

fpinscalalib.customlib

functionaldatastructures

package functionaldatastructures

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Branch[A](left: Tree[A], right: Tree[A]) extends Tree[A] with Product with Serializable
  2. case class Cons[+A](head: A, tail: List[A]) extends List[A] with Product with Serializable
  3. case class Leaf[A](value: A) extends Tree[A] with Product with Serializable
  4. sealed trait List[+A] extends AnyRef
  5. sealed trait Tree[+A] extends AnyRef

Value Members

  1. object List
  2. case object Nil extends List[Nothing] with Product with Serializable
  3. object Tree

Ungrouped