Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
オプションの種類をフィルタリングして、内容を抽出したいSeq。Some
Seq
Some
これを行うための単一の関数呼び出しはありますか?
val list = optionList.flatMap(_.toList)
sschaef がコメントで指摘しているように、以下を使用できますflatten。
flatten
val list = optionList.flatten
optionList.collect { case Some(x) => x }