View Source IntegerTree (ExUnion v0.1.2)
Link to this section Summary
Link to this section Types
@type t() :: union()
@type union() :: IntegerTree.Node.t() | IntegerTree.Leaf.t()
@type union_leaf() :: IntegerTree.Leaf.t()
@type union_node() :: IntegerTree.Node.t()
Link to this section Functions
@spec leaf() :: IntegerTree.Leaf.t()
@spec node(fields :: %{integer: integer(), left: union(), right: union()}) :: IntegerTree.Node.t()
@spec node(fields :: [integer: integer(), left: union(), right: union()]) :: IntegerTree.Node.t()
@spec node(integer :: integer(), left :: union(), right :: union()) :: IntegerTree.Node.t()