simon.vergauwen
05/23/2019, 3:12 PMTry.applicative().map(a(), b()) { a, b -> .. } this should work 🙂Danilo Herrera
05/23/2019, 4:35 PMKind<ForTry, Float> instead of Try<Float> for the example above. How can I convert Kind<ForTry, A> to Try<A>?simon.vergauwen
05/23/2019, 5:31 PM.fix() at the end. This is due to the higher kinded emulation we use to built these abstractions.simon.vergauwen
05/23/2019, 5:32 PMTry.map(....) {} without the need for fix in the coming version.simon.vergauwen
05/23/2019, 5:33 PMDanilo Herrera
05/24/2019, 1:17 PM