RedBlackTree.equalRange

Get a range from the container with all elements that are == e according to the less comparator

Complexity: O(log(n))

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

Meta

Suggestion Box / Bug Report