( self: NonEmptyReadonlyArray<A> )
| 1017 | * @since 2.0.0 |
| 1018 | */ |
| 1019 | export const unprepend = <A>( |
| 1020 | self: NonEmptyReadonlyArray<A> |
| 1021 | ): [firstElement: A, remainingElements: Array<A>] => [headNonEmpty(self), tailNonEmpty(self)] |
| 1022 | |
| 1023 | /** |
| 1024 | * Splits a non-empty array into all elements except the last, and the last |
nothing calls this directly
no test coverage detected