https://kotlinlang.org logo
#arrow
Title
r

raulraja

09/20/2022, 4:14 PM
f

franztesca

09/20/2022, 9:15 PM
Is there an ETA for arrow 2.0?
a

Alejandro Serrano Mena

09/21/2022, 5:49 AM
Not really, but we're trying to back port new APIs as much as possible
d

Dirk

09/21/2022, 10:55 AM
I have a small question about the new version: For the effects, context receivers are used (context(EffectScope<DomainError>)). I have assumed so far that this feature is still experimental and cannot be used productively. Do I have any old information on this or have I misunderstood this in the Kotlin documentation?
a

Alejandro Serrano Mena

09/21/2022, 12:18 PM
context receivers are still experimental, you’re right, which is a bit of a bummer
you can still use it in the “older” way and write
suspend fun EffectScope<DomainError>.thingThatMayFail()
2 Views