rangeUnchecked method

Vector<T> rangeUnchecked(
  1. int start,
  2. int end
)

Returns a mutable view onto a Vector range. The behavior is undefined, if the range is out of bounds.

Implementation

Vector<T> rangeUnchecked(int start, int end) =>
    start == 0 && end == count ? this : _rangeUnchecked(this, start, end);