BTree.insert

Inserts a new value into the BTree.

class BTree(ValueT, size_t NodeSizeV = 256, alias ValueLessF = "a < b")
void
insert
(
ValueT v
)
if (
is(typeof(binaryFun!ValueLessF(ValueT.init, ValueT.init)) : bool)
)

Meta