IndexMixin.opSlice

Fetch a range that spans all the elements in the container from index a (inclusive) to index b (exclusive). Preconditions: a <= b && b <= length

Complexity: O(1)

  1. RARange opSlice()
  2. RARange opSlice(size_t a, size_t b)
    mixin template IndexMixin(size_t N, ThisContainer)
    RARange
    opSlice
    (
    size_t a
    ,
    size_t b
    )

Meta