-
|
fp-ts has flow which allows to decompose nested calls. is there something similar in Arrow? |
Beta Was this translation helpful? Give feedback.
Answered by
kyay10
Dec 11, 2025
Replies: 1 comment
-
|
There's no real need for this in Kotlin. Lambda syntax suffices: { a: A -> a.let(ab).let(bc).let(cd) ... } |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kyay10
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's no real need for this in Kotlin. Lambda syntax suffices:
{ a: A -> a.let(ab).let(bc).let(cd) ... }