(ma: Either.Either<R, L>)
| 74 | |
| 75 | /** @internal */ |
| 76 | export const isRight = <R, L>(ma: Either.Either<R, L>): ma is Either.Right<L, R> => ma._tag === "Right" |
| 77 | |
| 78 | /** @internal */ |
| 79 | export const left = <L>(left: L): Either.Either<never, L> => { |
no outgoing calls
no test coverage detected