Splits a subarray into two parts, the first of which contains the first i
elements and the second
of which contains the remainder.
Equations
- One or more equations did not get rendered due to their size.
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.