zipWithIndex
trait Collection[A] { def zipWithIndex: Collection[(A, Int)] }
zipWithIndex は、各要素とそのインデックスをペアにしたコレクションを作成します。