(self: Chunk<Result<B, A>>)
| 1791 | * @since 2.0.0 |
| 1792 | */ |
| 1793 | export const separate = <A, B>(self: Chunk<Result<B, A>>): [Chunk<A>, Chunk<B>] => |
| 1794 | pipe( |
| 1795 | RA.separate(toReadonlyArray(self)), |
| 1796 | ([l, r]) => [fromArrayUnsafe(l), fromArrayUnsafe(r)] |
| 1797 | ) |
| 1798 | |
| 1799 | /** |
| 1800 | * Retrieves the size of the chunk. |
nothing calls this directly
no test coverage detected