RedBlackTree.removeAny

Remove an element from the container and return its value.

Complexity: O(log(n))

class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
removeAny
()
if (
is(typeof(
(
ref const T a
)
=> binaryFun!less(a, a)
))
)

Meta