(self: NonEmptyReadonlyArray<A>)
| 776 | * @since 2.0.0 |
| 777 | */ |
| 778 | export const initNonEmpty = <A>(self: NonEmptyReadonlyArray<A>): Array<A> => self.slice(0, -1) |
| 779 | |
| 780 | /** |
| 781 | * Keep only a max number of elements from the start of an `Iterable`, creating a new `Array`. |