Returns the array sliced from the first position to the second position. First position must be 1 or higher. If second position is longer than the array, the entire rest of the array will be returned.
Expression categories: Array
Declared arguments
Expression - Array to slice. Expression<Array<T>>
Slice begins - Array index start at 1, or from the end if start is negative. If this value is zero, expression will throw an error. Expression<Integer>
Slice length - The length of the slice. If the slice length goes beyond the end of the array, the entire rest of the array will be returned. Expression<Integer>