Internal
Returns a new generator that yields elements that are arrays of size n, grouped from the input iterable, by moving the window by step elements at a time.
n
step
The element type of the input iterable
The input iterable
The size of the groups
A new generator yielding arrays of size n of type T[], grouped from the input iterable, by moving the window by step elements at a time.
T[]
Generated using TypeDoc
Returns a new generator that yields elements that are arrays of size
n
, grouped from the input iterable, by moving the window bystep
elements at a time.