Vec.removeAndShiftRestOfArray

Removes a range of items and shift the rest of the array to front. Warning: O(N) complexity.

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

Meta