Mario Fernandez

  • About
  • Talks
  • Blog
  • Tags

Either Types for Rust

2020/10/19RustFunctional ProgrammingExceptionsEither
Either types are great for error handling. Rust has the Result type. It's tightly integrated into the language, and simplifies robust code

Either Types extended version

2020/04/23KotlinFunctional ProgrammingArrowExceptionsEither
The extended version of my article about Either types just got published in our corporate blog

Either Types as an alternative to throwing exceptions in Kotlin

2020/01/09KotlinFunctional ProgrammingArrowExceptionsEither
Using Either is an alternative to exceptions to make your code more explicit about errors. Easy and convenient with Kotlin and Arrow