return to top
source
Splits a subarray into two parts, the first of which contains the first i elements and the second of which contains the remainder.
i
Removes the first i elements of the subarray. If there are i or fewer elements, the resulting subarray is empty.
Keeps only the first i elements of the subarray. If there are i or fewer elements, the resulting subarray is empty.