(input: EitherEncoded<R, L>)
| 7378 | }) |
| 7379 | |
| 7380 | const eitherDecode = <R, L>(input: EitherEncoded<R, L>): either_.Either<R, L> => |
| 7381 | input._tag === "Left" ? either_.left(input.left) : either_.right(input.right) |
| 7382 | |
| 7383 | const eitherArbitrary = <R, L>( |
| 7384 | right: LazyArbitrary<R>, |
no outgoing calls
no test coverage detected
searching dependent graphs…