The number of elements to take in each window.
Optional
step: numberThe number of elements to move the window forward by on an
each step. Defaults to 1
.
The array the window slides along.
Snapshot array of the window sliding along the provided array.
Returns a snapshot array of a window of the provided size sliding along the provided array with the provided step.
Both size and step must be positive and can be greater than the number of elements in this collection.
Inspired by Kotlin's
windowed
method.