Vector.opSliceUnary

Slicing operations execute an operation on an entire slice.

Precondition: i < j && j < length

Complexity: O(slice.length)

  1. void opSliceUnary()
  2. void opSliceUnary(size_t i, size_t j)
    struct Vector(T, ALLOC = ThreadMem)
    nothrow
    void
    opSliceUnary
    (
    string op
    )
    if (
    op == "++" ||
    op == "--"
    )

Meta