subvector abstract method

Vector subvector(
  1. int start, [
  2. int? end
])

Returns a new vector composed of values whose indices are within the range start (inclusive) - end (exclusive)

Implementation

Vector subvector(int start, [int? end]);