Summing up two options

前端 未结 4 944
误落风尘
误落风尘 2021-02-08 22:10

Let\'s say I have two optional Ints (both can be Some or None):

val one : Option[Int] = Some(1)
val two : Option[Int] = Some(2)

My question is

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-08 22:56

    obligatory scalaz answer is to use the scalaz Option monoid:

    scala> one |+| two
    res0: Option[Int] = Some(3)
    

    It will do what you want with respect to None:

    scala> two |+| None
    res1: Option[Int] = Some(2)
    
    scala> none[Int] |+| none[Int]
    res2: Option[Int] = None
    

    That none method is a method from scalaz which helps with type inference because instead of returning None <: Option[Nothing] it returns a Option[Int], there is a similar method from Some which returns an Option[A] for any given A instead of a Some[A]:

    scala> 1.some |+| 2.some
    res3: Option[Int] = Some(3)
    

提交回复
热议问题