julian
Effect
Only when fold is called it will create a Continuation and run the computation, this means Effect can encode side-effects as pure values.
fold
Continuation
side-effects
pure values
simon.vergauwen
fun error(): Nothing = TODO() val impure: String = error() val pure: Effect<Nothing, String> = effect { error() }
stojan
fun error()
suspend
A modern programming language that makes developers happier.