(self: Chunk<readonly [A, B]>)
| 2250 | * @since 2.0.0 |
| 2251 | */ |
| 2252 | export const unzip = <A, B>(self: Chunk<readonly [A, B]>): [Chunk<A>, Chunk<B>] => { |
| 2253 | const [left, right] = RA.unzip(self) |
| 2254 | return [fromArrayUnsafe(left), fromArrayUnsafe(right)] |
| 2255 | } |
| 2256 | |
| 2257 | /** |
| 2258 | * Zips this chunk pointwise with the specified chunk using the specified combiner. |
nothing calls this directly
no test coverage detected