(f: (a: A0, w: O.Option<E0>) => These<E, A>)
| 92 | } |
| 93 | |
| 94 | export function chain<E0, A0, E, A>(f: (a: A0, w: O.Option<E0>) => These<E, A>) { |
| 95 | return (self: These<E0, A0>) => chain_(self, f) |
| 96 | } |
| 97 | |
| 98 | export function result<E, A>(self: These<E, A>): E.Either<E, Tp.Tuple<[A, O.Option<E>]>> { |
| 99 | return self.either |
nothing calls this directly
no test coverage detected
searching dependent graphs…