Vector.opSliceAssign

Slicing operations execute an operation on an entire slice.

Precondition: i < j && j < length

Complexity: O(slice.length)

  1. void opSliceAssign(Stuff value)
    struct Vector(T, ALLOC = ThreadMem)
    nothrow
    void
    opSliceAssign
    (
    Stuff
    )
    (
    auto ref Stuff value
    )
  2. void opSliceAssign(Stuff value, size_t i, size_t j)

Meta