I'm running into quite a few places where I have something akin to

def f(s: String): Option[Long] = ...
def g(l: Long): IO[Option[Wibble]] = ...

val a: IO[Option[Wibble]] = f(param).flatMap(g).sequence.map(_.join)

Seeing the .sequence.map(_.join) repeated over and over is starting to bother me. Is there a more idiomatic way of accomplishing the same thing?

link|improve this question
1  
Are you sure about the types in the example? g's type doesn't look compatible with flatMap there to me. – Kristian Domagala Jan 12 at 6:05
If I understand you correctly you want to do exactly that: stackoverflow.com/questions/5968345/… – kuki Jan 12 at 9:29
feedback

2 Answers

The idiomatic method for dealing with Option chains is to use for-comprehensions and a getOrElse call.

val a = for {
    val temp <- f(param)
    val result <- Some(g(temp))
} yield result getOrElse <Default Here>

There's no getting around either having a default or raising an exception if you are going to categorically unpack the Option since f can return None and g can't accept that.

link|improve this answer
feedback

This sounds like the use case for monad transformers, see here for an explanation in Haskell and here for a discussion in Scala.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.