flatMap
方法(或属性)属于 scala.collection.IterableOnceOps
特性(trait),其相关用法说明如下。
用法:
def flatMap[B](f: A => IterableOnce[B]): CC[B]
通过将函数应用于此集合的所有元素并使用结果集合的元素来构建新集合。
例如:
def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")
结果集合的类型由集合的静态类型引导。这有时可能会导致意想不到的结果。例如:
// lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
// lettersOf will return a Set[Char], not a Seq
def lettersOf(words: Seq[String]) = words.toSet flatMap ((word: String) => word.toSeq)
// xs will be an Iterable[Int]
val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
// ys will be a Map[Int, Int]
val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
类型参数:
- B
返回集合的元素类型。
值参数:
- f
应用于每个元素的函数。
返回:
通过将给定的 collection-valued 函数
f
应用于此集合的每个元素并连接结果而产生的新集合.源码:
- IterableOnce.scala
相关用法
- Scala IterableOnceOps.flatten用法及代码示例
- Scala IterableOnceOps.mkString用法及代码示例
- Scala IterableOnceOps.addString用法及代码示例
- Scala IterableOnceOps.collectFirst用法及代码示例
- Scala IterableOnceOps.slice用法及代码示例
- Scala IterableOnceOps.zipWithIndex用法及代码示例
- Scala IterableOps.sizeIs用法及代码示例
- Scala IterableOps.tails用法及代码示例
- Scala IterableOps.mkString用法及代码示例
- Scala IterableOps.unzip3用法及代码示例
- Scala IterableOps.scanRight用法及代码示例
- Scala IterableOps.groupMap用法及代码示例
- Scala IterableOps.addString用法及代码示例
- Scala IterableOps.groupMapReduce用法及代码示例
- Scala IterableOps.partitionMap用法及代码示例
- Scala IterableOps.inits用法及代码示例
- Scala IterableOps.unzip用法及代码示例
- Scala IterableOps.sizeCompare用法及代码示例
- Scala IterableOps.sliding用法及代码示例
- Scala IterableOps.groupBy用法及代码示例
- Scala IterableOps.collectFirst用法及代码示例
- Scala IterableOps.transpose用法及代码示例
- Scala Iterable.sizeCompare用法及代码示例
- Scala IterableFactoryDefaults.groupMap用法及代码示例
- Scala Iterable.transpose用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 IterableOnceOps.flatMap。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。