unzip3
方法(或屬性)屬於sys.SystemProperties類(class),其相關用法說明如下。
用法:
def unzip3[A1, A2, A3](implicit asTriple: ((String, String)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
將此三元組的可迭代集合轉換為每個三元組的第一個、第二個和第三個元素的三個集合。
val xs = Iterable(
(1, "one", '1'),
(2, "two", '2'),
(3, "three", '3')).unzip3
// xs == (Iterable(1, 2, 3),
// Iterable(one, two, three),
// Iterable(1, 2, 3))
類型參數:
- A1
元素三元組的第一個成員的類型
- A2
元素三元組的第二個成員的類型
- A3
元素三元組的第三個成員的類型
值參數:
- asTriple
一個隱式轉換,它斷言這個可迭代集合的元素類型是三元組。
返回:
可迭代集合的三元組,分別包含此可迭代集合的每個元素三元組的第一個、第二個和第三個成員。
繼承自:
- collection.IterableOps.unzip3
源碼:
- Iterable.scala
相關用法
- Scala SystemProperties.unzip用法及代碼示例
- Scala SystemProperties.addString用法及代碼示例
- Scala SystemProperties.tails用法及代碼示例
- Scala SystemProperties.transpose用法及代碼示例
- Scala SystemProperties.equals用法及代碼示例
- Scala SystemProperties.elementWise用法及代碼示例
- Scala SystemProperties.groupBy用法及代碼示例
- Scala SystemProperties.lazyZip用法及代碼示例
- Scala SystemProperties.runWith用法及代碼示例
- Scala SystemProperties.scanRight用法及代碼示例
- Scala SystemProperties.groupMapReduce用法及代碼示例
- Scala SystemProperties.collectFirst用法及代碼示例
- Scala SystemProperties.groupMap用法及代碼示例
- Scala SystemProperties.sizeIs用法及代碼示例
- Scala SystemProperties.sizeCompare用法及代碼示例
- Scala SystemProperties.inits用法及代碼示例
- Scala SystemProperties.partitionMap用法及代碼示例
- Scala SystemProperties.mkString用法及代碼示例
- Scala SystemProperties.sliding用法及代碼示例
- Scala Symbol.on用法及代碼示例
- Scala Symbol.orElseBy用法及代碼示例
- Scala SymbolOrdering.orElseBy用法及代碼示例
- Scala SymbolOrdering.on用法及代碼示例
- Scala SymbolModule.spliceOwner用法及代碼示例
- Scala SymbolOrdering.orElse用法及代碼示例
注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 SystemProperties.unzip3。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。