(self: ReadonlyArray<A>)
| 560 | * @since 4.0.0 |
| 561 | */ |
| 562 | export const fromArrayUnsafe = <A>(self: ReadonlyArray<A>): Chunk<A> => |
| 563 | self.length === 0 ? empty() : self.length === 1 ? of(self[0]) : makeChunk({ _tag: "IArray", array: self }) |
| 564 | |
| 565 | /** |
| 566 | * Wraps a non-empty array into a non-empty chunk without copying. |
no test coverage detected