( self: Either.Either<R, L> )
| 91 | |
| 92 | /** @internal */ |
| 93 | export const getLeft = <R, L>( |
| 94 | self: Either.Either<R, L> |
| 95 | ): Option<L> => (isRight(self) ? option.none : option.some(self.left)) |
| 96 | |
| 97 | /** @internal */ |
| 98 | export const getRight = <R, L>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…