(self: NonEmptyReadonlyArray<A>)
| 396 | * @category unsafe |
| 397 | */ |
| 398 | export const unsafeFromNonEmptyArray = <A>(self: NonEmptyReadonlyArray<A>): NonEmptyChunk<A> => |
| 399 | unsafeFromArray(self) as any |
| 400 | |
| 401 | /** |
| 402 | * Gets an element unsafely, will throw on out of bounds |
no test coverage detected