View Source Algae.Tree.BinarySearch.Node (Algae v1.3.2-doma)

Link to this section Summary

Link to this section Types

@type 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

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

Link to this function

new_partial(node, left, right)

View Source