BinarySearchTree.insertAt

Inserts an item at the given point. Returns true if the height of the tree have been raised.

struct BinarySearchTree(K, E)
protected @nogc
bool
insertAt
(
BSTNode!(K, E)** node
,
K key
,
E val
)

Meta