slice_arrayExtracts a slice from an array.
arrayThe array to slice.
startIndex of the first element to extract. This will be adjusted to be inside the range of the input array.
stopIndex of the first element past the end of the slice. This is also adjusted to fit the original array bounds.
strideIndex increment between each element in the original array. This can be negative.
For example, slice_array(a, array_size(a), -1, -1) can be used to safely reverse an array.
sliceThe array slice.