(self: Iterable<Either<R, L>>)
| 887 | * @since 2.0.0 |
| 888 | */ |
| 889 | export const getRights = <R, L>(self: Iterable<Either<R, L>>): Iterable<R> => filterMap(self, E.getRight) |
| 890 | |
| 891 | /** |
| 892 | * @category filtering |
nothing calls this directly
no test coverage detected