(f: (a: E0) => E)
| 79 | } |
| 80 | |
| 81 | export function mapError<E0, E>(f: (a: E0) => E): <A>(self: These<E0, A>) => These<E, A> { |
| 82 | return (self) => mapError_(self, f) |
| 83 | } |
| 84 | |
| 85 | export function chain_<E0, A0, E, A>(self: These<E0, A0>, f: (a: A0, w: O.Option<E0>) => These<E, A>) { |
| 86 | return foldM_( |
nothing calls this directly
no test coverage detected
searching dependent graphs…