(f: (a: A0) => A)
| 66 | } |
| 67 | |
| 68 | export function map<A0, A>(f: (a: A0) => A) { |
| 69 | return <E>(self: These<E, A0>) => map_(self, f) |
| 70 | } |
| 71 | |
| 72 | export function mapError_<E0, E, A>(self: These<E0, A>, f: (a: E0) => E): These<E, A> { |
| 73 | return foldM_( |
no test coverage detected