Skip to content

drop

drop(n): <A>(data) => readonly A[]

Defined in: Core/Arr.ts:492

Drops the first n elements from an array.

number

<A>(data): readonly A[]

A

readonly A[]

readonly A[]

pipe([1, 2, 3, 4], Arr.drop(2)); // [3, 4]