unzip
方法(或属性)属于 scala.collection.IndexedSeq
特性(trait),其相关用法说明如下。
用法:
def unzip[A1, A2](implicit asPair: A => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
将此可迭代的对集合转换为每对的前半部分和后半部分的两个集合。
val xs = Iterable(
(1, "one"),
(2, "two"),
(3, "three")).unzip
// xs == (Iterable(1, 2, 3),
// Iterable(one, two, three))
类型参数:
- A1
前半部分元素对的类型
- A2
后半部分元素对的类型
值参数:
- asPair
一个隐式转换,它断言这个可迭代集合的元素类型是一对。
返回:
一对可迭代集合,分别包含此可迭代集合的每个元素对的前半部分和后半部分。
继承自:
- collection.IterableOps.unzip
源码:
- Iterable.scala
相关用法
- Scala IndexedSeq.unzip3用法及代码示例
- Scala IndexedSeq.collectFirst用法及代码示例
- Scala IndexedSeq.elementWise用法及代码示例
- Scala IndexedSeq.lengthIs用法及代码示例
- Scala IndexedSeq.appended用法及代码示例
- Scala IndexedSeq.applyOrElse用法及代码示例
- Scala IndexedSeq.sortWith用法及代码示例
- Scala IndexedSeq.inits用法及代码示例
- Scala IndexedSeq.sortBy用法及代码示例
- Scala IndexedSeq.addString用法及代码示例
- Scala IndexedSeq.scanRight用法及代码示例
- Scala IndexedSeq.transpose用法及代码示例
- Scala IndexedSeq.lazyZip用法及代码示例
- Scala IndexedSeq.combinations用法及代码示例
- Scala IndexedSeq.sizeIs用法及代码示例
- Scala IndexedSeq.groupMapReduce用法及代码示例
- Scala IndexedSeq.runWith用法及代码示例
- Scala IndexedSeq.groupBy用法及代码示例
- Scala IndexedSeq.partitionMap用法及代码示例
- Scala IndexedSeq.sliding用法及代码示例
- Scala IndexedSeq.mkString用法及代码示例
- Scala IndexedSeq.groupMap用法及代码示例
- Scala IndexedSeq.tails用法及代码示例
- Scala IndexedSeq.permutations用法及代码示例
- Scala IndexedSeqOps.lengthIs用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 IndexedSeq.unzip。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。