Top "Scalaz" questions

Scalaz provides type classes and purely functional data structures for Scala

Different Scala Actor Implementations Overview

I'm trying to find the 'right' actor implementation. I realized there is a bunch of them and it's a bit …

scala actor lift scalaz akka
Converting a tuple of options to an option of tuple with Scalaz or Shapeless

Having (Some(1), Some(2)) I expect to get Some((1, 2)) and having (Some(1), None) I expect to get None

scala scalaz shapeless
Reader Monad for Dependency Injection: multiple dependencies, nested calls

When asked about Dependency Injection in Scala, quite a lot of answers point to the using the Reader Monad, either …

scala dependency-injection scalaz