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

Meta