(self: NonEmptyReadonlyArray<A>)
| 591 | * @since 4.0.0 |
| 592 | */ |
| 593 | export const fromNonEmptyArrayUnsafe = <A>(self: NonEmptyReadonlyArray<A>): NonEmptyChunk<A> => |
| 594 | fromArrayUnsafe(self) as any |
| 595 | |
| 596 | /** |
| 597 | * Gets an element at the specified index without returning an `Option`. |
no test coverage detected