Makes pairs with each element and its next one.
A list of elements.
[1, 2, 3, 4] --> [[1, 2], [3, 4]] Copy
[1, 2, 3, 4] --> [[1, 2], [3, 4]]
Generated using TypeDoc
Makes pairs with each element and its next one.