(ma: Either.Either<R, L>)
| 71 | |
| 72 | /** @internal */ |
| 73 | export const isLeft = <R, L>(ma: Either.Either<R, L>): ma is Either.Left<L, R> => ma._tag === "Left" |
| 74 | |
| 75 | /** @internal */ |
| 76 | export const isRight = <R, L>(ma: Either.Either<R, L>): ma is Either.Right<L, R> => ma._tag === "Right" |
no outgoing calls
no test coverage detected
searching dependent graphs…