Returns a generator that skips the first n elements and yields the rest.
n
The type of elements in the iterable
Number of elements to skip from the beginning
Elements after skipping the first n elements
G.pipe( [1, 2, 3, 4, 5], G.skip(2), G.array) // [3, 4, 5] Copy
G.pipe( [1, 2, 3, 4, 5], G.skip(2), G.array) // [3, 4, 5]
Returns a generator that skips the first
nelements and yields the rest.