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(
(
ref const T a
)
=> binaryFun!less(a, a)
))
)

Meta