RedBlackTree.lowerBound

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

Complexity: O(log(n))

  1. Range lowerBound(Elem e)
    class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
    lowerBound
    if (
    is(typeof(binaryFun!less(T.init, T.init)))
    )
  2. ConstRange lowerBound(Elem e)
  3. ImmutableRange lowerBound(Elem e)

Meta

Suggestion Box / Bug Report