(self: NonEmptyReadonlyArray<A>)
| 748 | * @since 2.0.0 |
| 749 | */ |
| 750 | export const tailNonEmpty = <A>(self: NonEmptyReadonlyArray<A>): Array<A> => self.slice(1) |
| 751 | |
| 752 | /** |
| 753 | * Get all but the last element of an `Iterable`, creating a new `Array`, or `None` if the `Iterable` is empty. |