There is also cartesian ops for applicative style ...
# arrow
r
There is also cartesian ops for applicative style of independent operations. For example:
Copy code
Try.applicative().tupled(Try { 1 }, Try { 2 }, Try { "whatever" })
//Success(Tuple3<Int, Int, String>(1, 2, "whatever"))