码迷,mamicode.com
首页 > 其他好文 > 详细

Option Sequence

时间:2016-04-24 11:00:44      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

package option

object Sequence {

  def sequence[A](a: List[Option[A]]): Option[List[A]] = a match {
    case Nil    => Some(Nil)
    case h :: t => h.flatMap(hh => sequence(t) map (hh :: _))
  }

  def main(args: Array[String]): Unit = {
    val l = List(Some(1), Some(2), Some(3), Some(4))
    val l1 = List(Some(1), Some(2), None, Some(4))
    val l2 = Nil
    println(sequence(l))
    println(sequence(l1))
    println(sequence(l2))
  }

}
Some(List(1, 2, 3, 4))
None
Some(List())

 

Option Sequence

标签:

原文地址:http://www.cnblogs.com/JonkeyGuan/p/5426411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!