RedBlackTree.removeFront

Remove the front element from the container.

Complexity: O(log(n))

class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
void
removeFront
()
if (
is(typeof(binaryFun!less(T.init, T.init)))
)

Meta

Suggestion Box / Bug Report