Hi, i am trying to do something like this: ```val ...
# arrow
j
Hi, i am trying to do something like this:
Copy code
val result = Either.right(value).map { suspendFunction(it) }
s
Alas, that is not possible in Arrow. The
map
, and other related functions, are not declared
inline
in Arrow for these types. IIRC, this will be fixed/allowed in a future release, but i’m not sure…
s
@streetsofboston It's already on the SNAPSHOT 😉
💯 1