EarthCitizen
05/25/2021, 6:37 PMarrow.core.extensions
package? I am trying to do Either.applicative()
, in case I am wrong about where to find thissimon.vergauwen
05/25/2021, 6:58 PMFunctor
hierarchy was deprecated in 0.12.x and removed in 0.13.xEarthCitizen
05/25/2021, 6:58 PMEarthCitizen
05/25/2021, 6:59 PMEarthCitizen
05/25/2021, 7:01 PMeither.eager {
val a = foo.bind()
val b = foo.bind()
Foo(a, b)
}
EarthCitizen
05/25/2021, 7:02 PMraulraja
05/25/2021, 7:18 PMfoo.zip(otherFoo) { a, b -> Foo(a, b) }
EarthCitizen
05/25/2021, 7:44 PM