Optionally adding items to a Scala Map

前端 未结 3 1327
耶瑟儿~
耶瑟儿~ 2021-02-02 09:01

I am looking for an idiomatic solution to this problem.

I am building a val Scala (immutable) Map and would like to optionally add one or more items:

<
3条回答
  •  逝去的感伤
    2021-02-02 09:26

    Another possibility is to take advantage of the iterable nature of Option.

    A non-empty value o:

    scala> val o = Some('z' -> 3)
    scala> (Seq('x' -> 1, 'y' -> 2) ++ o).toMap
    res1: scala.collection.immutable.Map[Char,Int] = Map(x -> 1, y -> 2, z -> 3)
    

    An empty value o:

    scala> val o = None
    scala> (Seq('x' -> 1, 'y' -> 2) ++ o).toMap
    res2: scala.collection.immutable.Map[Char,Int] = Map(x -> 1, y -> 2)
    

提交回复
热议问题