Vector.opSlice

Returns an array of the container from index a up to (excluding) index b.

Precondition: a <= b && b <= length

Complexity: O(1)

  1. auto opSlice()
  2. T[] opSlice(size_t i, size_t j)
    struct Vector(T, ALLOC = ThreadMem)
    const
    T[]
    opSlice
    (
    size_t i
    ,
    size_t j
    )

Meta