map2<C, D> method
Implementation
@override
Either<L, D> map2<C, D>(covariant Either<L, C> m1, D Function(R b, C c) f) =>
flatMap((b) => m1.map((c) => f(b, c)));
@override
Either<L, D> map2<C, D>(covariant Either<L, C> m1, D Function(R b, C c) f) =>
flatMap((b) => m1.map((c) => f(b, c)));