Algae.Tree.BinarySearch.Node (Algae v1.3.1) View Source

Link to this section Summary

Link to this section Types

Specs

t() :: %Algae.Tree.BinarySearch.Node{
  left: Algae.Tree.BinarySearch.t(),
  node: any(),
  right: Algae.Tree.BinarySearch.t()
}

Link to this section Functions

Link to this function

new(node \\ nil, left \\ BinarySearch.Empty.new(), right \\ BinarySearch.Empty.new())

View Source

Specs

Positional constructor, with args in the same order as they were defined in

Link to this function

new_partial(node, left, right)

View Source