6

What is the best way to do this:

def reduce[A](x: Option[A], y: Option[A])(f: (A, A) => A): Option[A] = 
  (x, y) match {
    case (Some(a), Some(b)) => Some(f(a, b))
    case (None, None) => None
    case (_,  None) => x
    case (None, _) => y
  }

I looked at this question but his case is slightly different from mine...

Community
  • 1
  • 1
pathikrit
  • 32,469
  • 37
  • 142
  • 221

1 Answers1

14

The shortest is probably

(x ++ y).reduceLeftOption(f)

which works because of an implicit conversion from Option to Iterable which happens to have a method that does exactly what you need.

Rex Kerr
  • 166,841
  • 26
  • 322
  • 407