( self: Either.Either<R, L> )
| 96 | |
| 97 | /** @internal */ |
| 98 | export const getRight = <R, L>( |
| 99 | self: Either.Either<R, L> |
| 100 | ): Option<R> => (isLeft(self) ? option.none : option.some(self.right)) |
| 101 | |
| 102 | /** @internal */ |
| 103 | export const fromOption: { |
nothing calls this directly
no test coverage detected
searching dependent graphs…