Posts

2024

Back to Top ↑

2017

Back to Top ↑

2016

Reducing Two Option[T]’s in Scala

4 minute read

Every Scala programmer is familiar with the Option[T] monad. Option[T] is a container which either has a value (Some), or doesn’t have a value (None). It is ...

Back to Top ↑

2015

Using Async-Await With Mutable Structs

4 minute read

Not long ago an interesting question appeared on StackOverflow. We know that generally, mutable structs are considered evil, primarily for the fact that they...

Back to Top ↑