HTree

utest.framework.HTree
See theHTree companion object
sealed trait HTree[+N, +L]

An immutable tree where the middle-nodes and leaf-nodes each contain different sorts of data, marked by the type params N and L

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Leaf[L]
class Node[N, L]

Members list

Value members

Abstract methods

def leaves: Iterator[L]
def mapLeaves[T](f: L => T): HTree[N, T]