斯卡拉Seq
具有zipWithIndex
方法:什麼是Scala的zipWithIndex的Clojure等價物?
def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Seq[A], (A1, Int), That]): That
拉鍊這個序列與它的指標。
返回:包含由該序列的所有元素組成的對的新序列與其索引配對。指數在0
例子開始:
List("a", "b", "c").zipWithIndex = List(("a", 0), ("b", 1), ("c", 2))
什麼是Clojure中的等價功能?