Names
xs.flatMap(x ->
ys.flatMap(y ->
zs.flatMap(z -> {
return unit(x * y * z);
})
)
).collect(Collectors.toList())xs.bind(x ->
ys.bind(y ->
zs.bind(z -> {
return unit(x * y * z);
}))).collect(Collectors.toList())Last updated