( self: NonEmptyReadonlyArray<A> )
| 648 | * @since 2.0.0 |
| 649 | */ |
| 650 | export const unprepend = <A>( |
| 651 | self: NonEmptyReadonlyArray<A> |
| 652 | ): [firstElement: A, remainingElements: Array<A>] => [headNonEmpty(self), tailNonEmpty(self)] |
| 653 | |
| 654 | /** |
| 655 | * Return a tuple containing a copy of the `NonEmptyReadonlyArray` without its last element, and that last element. |
nothing calls this directly
no test coverage detected