(self: Chunk<A>)
| 279 | } |
| 280 | |
| 281 | const toArray_ = <A>(self: Chunk<A>): Array<A> => toReadonlyArray(self).slice() |
| 282 | |
| 283 | /** |
| 284 | * Converts a `Chunk` into an `Array`. If the provided `Chunk` is non-empty |
nothing calls this directly
no test coverage detected