( self: NonEmptyReadonlyArray<A> )
| 667 | * @since 2.0.0 |
| 668 | */ |
| 669 | export const unappend = <A>( |
| 670 | self: NonEmptyReadonlyArray<A> |
| 671 | ): [arrayWithoutLastElement: Array<A>, lastElement: A] => [initNonEmpty(self), lastNonEmpty(self)] |
| 672 | |
| 673 | /** |
| 674 | * Get the first element of a `ReadonlyArray`, or `None` if the `ReadonlyArray` is empty. |
nothing calls this directly
no test coverage detected