(self: NonEmptyReadonlyArray<A>)
| 720 | * @since 2.0.0 |
| 721 | */ |
| 722 | export const lastNonEmpty = <A>(self: NonEmptyReadonlyArray<A>): A => self[self.length - 1] |
| 723 | |
| 724 | /** |
| 725 | * Get all but the first element of an `Iterable`, creating a new `Array`, or `None` if the `Iterable` is empty. |