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


Scala Reverse.permutations用法及代碼示例


permutations 方法(或屬性)屬於 scala.collection.SeqView.Reverse 類(class),其相關用法說明如下。

用法:

def permutations: Iterator[View[A]]

迭代不同的排列。

注意:即使應用於視圖或惰性集合,它也會始終強製元素。

返回:

遍曆此序列的不同排列的迭代器。

例子:

"abb".permutations = Iterator(abb, bab, bba)

繼承自:

collection.SeqOps.permutations

源碼:

Seq.scala

相關用法


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