(self: Chunk<readonly [A, B]>)
| 1195 | * @category elements |
| 1196 | */ |
| 1197 | export const unzip = <A, B>(self: Chunk<readonly [A, B]>): [Chunk<A>, Chunk<B>] => { |
| 1198 | const [left, right] = RA.unzip(self) |
| 1199 | return [unsafeFromArray(left), unsafeFromArray(right)] |
| 1200 | } |
| 1201 | |
| 1202 | /** |
| 1203 | * Zips this chunk pointwise with the specified chunk using the specified combiner. |
nothing calls this directly
no test coverage detected
searching dependent graphs…