StrictTree

Companion
class
trait Product
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

object Leaf

Leaf represents a tree node with no children.

Leaf represents a tree node with no children.

You can use Leaf for tree construction or pattern matching.

object Node

Node represents a tree node that may have children.

Node represents a tree node that may have children.

You can use Node for tree construction or pattern matching.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def unfoldForest[A, B](s: Vector[A])(f: A => (B, Vector[A])): Vector[StrictTree[B]]
def unfoldTree[A, B](v: A)(f: A => (B, Vector[A])): StrictTree[B]

Implicits

Implicits

implicit
def ToStrictTreeUnzip[A1, A2](root: StrictTree[(A1, A2)]): StrictTreeUnzip[A1, A2]

Inherited implicits

implicit
def treeEqual[A](implicit A0: Equal[A]): Equal[StrictTree[A]]
Inherited from
StrictTreeInstances
implicit
def treeOrder[A](implicit A0: Order[A]): Order[StrictTree[A]]
Inherited from
StrictTreeInstances