Removes the first i
elements of the subarray. If there are i
or fewer elements, the resulting
subarray is empty.
Equations
- arr.drop i = { array := arr.array, start := min (arr.start + i) arr.stop, stop := arr.stop, start_le_stop := ⋯, stop_le_array_size := ⋯ }
Instances For
Keeps only the first i
elements of the subarray. If there are i
or fewer elements, the resulting
subarray is empty.
Equations
- arr.take i = { array := arr.array, start := arr.start, stop := min (arr.start + i) arr.stop, start_le_stop := ⋯, stop_le_array_size := ⋯ }