The Dangerous Side of Kotlin Result
Kotlin Result looks very useful. We have an operation that can fail: val user = api.loadUser() We wrap it with runCatching: val result = runCatching { api.loadUser() } And that is it. No big try
May 2, 202619 min read18

