Vec.removeAndShiftRestOfArray

Removes an item and shift the rest of the array to front by 1. Warning: O(N) complexity.

  1. void removeAndShiftRestOfArray(size_t index)
    struct Vec(T)
    nothrow @nogc @trusted
    void
    removeAndShiftRestOfArray
    (
    size_t index
    )
  2. void removeAndShiftRestOfArray(size_t first, size_t last)

Meta