RedBlackTree.removeBack

Remove the back element from the container.

Complexity: O(log(n))

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

Meta