(self: Iterable<Either<R, L>>)
| 868 | * @since 2.0.0 |
| 869 | */ |
| 870 | export const getLefts = <R, L>(self: Iterable<Either<R, L>>): Iterable<L> => filterMap(self, E.getLeft) |
| 871 | |
| 872 | /** |
| 873 | * Retrieves the `Right` values from an `Iterable` of `Either`s. |
nothing calls this directly
no test coverage detected