當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala IterableOnceOps.zipWithIndex用法及代碼示例


zipWithIndex 方法(或屬性)屬於 scala.collection.IterableOnceOps 特性(trait),其相關用法說明如下。

用法:

def zipWithIndex: CC[(A, Int)]

用它的索引壓縮這個集合。

返回:

一個新集合,其中包含由該集合的所有元素與其索引配對組成的對。索引從 0 開始。

例子:

List("a", "b", "c").zipWithIndex == List(("a", 0), ("b", 1), ("c", 2))

源碼:

IterableOnce.scala

相關用法


注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 IterableOnceOps.zipWithIndex。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。