Array.opSliceAssign

Slicing operators executing the specified operation on the entire slice.

Precondition: i < j && j < length

Complexity: O(slice.length)

  1. void opSliceAssign(T value)
  2. void opSliceAssign(T value, size_t i, size_t j)
    struct Array(T)
    void
    opSliceAssign
    (,
    size_t i
    ,
    size_t j
    )
    if (
    !is(immutable T == immutable bool)
    )

Meta