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)
    void
    opSliceUnary
    (
    string op
    )
    (
    size_t i
    ,
    size_t j
    )
    if (
    op == "++" ||
    op == "--"
    )

Meta