(self: Chunk<Either<B, A>>)
| 1006 | * @since 2.0.0 |
| 1007 | */ |
| 1008 | export const separate = <A, B>(self: Chunk<Either<B, A>>): [Chunk<A>, Chunk<B>] => |
| 1009 | pipe( |
| 1010 | RA.separate(toReadonlyArray(self)), |
| 1011 | ([l, r]) => [unsafeFromArray(l), unsafeFromArray(r)] |
| 1012 | ) |
| 1013 | |
| 1014 | /** |
| 1015 | * Retireves the size of the chunk |
nothing calls this directly
no test coverage detected