import { Enumerable } from "https://deno.land/x/proc@0.20.23/src/enumerable.ts";
Drop the first n
items, return the rest.
Parameters
optional
n: NThe number of items to drop.
Returns
Enumerable<T>
The items that were not dropped.
x/proc/src/enumerable.ts>Enumerable#drop
import { Enumerable } from "https://deno.land/x/proc@0.20.23/src/enumerable.ts";
Drop the first n
items, return the rest.
The number of items to drop.
The items that were not dropped.