_drop
Produces all but the first N values from the received context. --
Function
Anything -> _drop
(howMany) -> The same Type
- Receives
- A List of anything
- howMany
- The number of elements to drop from the beginning of the List
- Produces
- The rest of the List after dropping the first howMany elements
_drop is the inverse of _take -- it drops the first howMany, and produces what's left,
if anything.
Note that _rest is roughly the same as _drop(1).