(no title)
joostdevries | 6 years ago
And I say that having developed in Scala for years and years.
Of course there's still sometimes when you want processing of other items to proceed, even though this one has failed. And that's where Try is really essential. So that's where we use it only: at the topmost level.
It's only at that top level that we wrap the call in a Try. And that works rather well.
One reason to do it like this is that we want to leverage the design philosophy of Kotlin. And not be writing Scala or Haskell in Kotlin ). And Kotlins philosophy when it comes to exceptions turns out to be: exceptions. Which is apparent in Kotlin coroutines, channels and flows.
) that's also why we try to stay away from Arrow
ragnese|6 years ago
Truth is, I rather be writing Rust, but I need the JVM sometimes. ;)
vmchale|6 years ago
That's the advantage of the monadic/functorial approach: they don't!