- clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
- find
BST find(int k)
Undocumented in source. Be warned that the author may not have intended to support it.
- findLeftMost
BST findLeftMost()
Undocumented in source. Be warned that the author may not have intended to support it.
- insert
void insert(int k, T v)
Undocumented in source. Be warned that the author may not have intended to support it.
- opApply
int opApply(int delegate(int, ref T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
- remove
void remove(int k, BST par)
Undocumented in source. Be warned that the author may not have intended to support it.
- traverse
void traverse(void function(int, T) func)
Undocumented in source. Be warned that the author may not have intended to support it.
GC-free binary search tree implementation.