RBTree.removeFront

Remove the front element from the container.

Complexity: O(log(n))

struct RBTree(T, alias less = "a < b", bool allowDuplicates = true, ALLOC = ThreadMem, bool NOGC_ = false)
void
removeFront
()
if (
is(typeof(binaryFun!less(T.init, T.init)))
)

Meta