View Source Algae.Tree.BinarySearch.Node (Algae v1.3.2-doma)
Link to this section Summary
Functions
Positional constructor, with args in the same order as they were defined in
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@spec new( any(), Algae.Tree.BinarySearch.t(), Algae.Tree.BinarySearch.t() ) :: t()
Positional constructor, with args in the same order as they were defined in