RedBlackTree.opSlice

Fetch a range that spans all the elements in the container.

Complexity: O(1)

  1. Range opSlice()
  2. ConstRange opSlice()
    class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
    const
    ConstRange
    opSlice
    ()
    if (
    is(typeof(
    (
    ref const T a
    )
    => binaryFun!less(a, a)
    ))
    )
  3. ImmutableRange opSlice()

Meta