if B doesn’t depend on A then use `applicative().m...
# arrow
p
if B doesn’t depend on A then use
applicative().map(val1, val2, val3) { a, b, c -> SomeClass(a, b, c) }
s
If I have two eithers, and I want to map on them if they are both Right, how do I do that using applicative() ?
s
The map is executed only when both values are right