Iterates over distinct permutations of this sequence.
If this sequence represents an infinite set or series, calling GetEnumerator on the result value will not return!
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
Return Value
Type: IEnumerable ISequence TAn iterator which traverses the distinct permutations of this sequence.
Examples
"abb".AsSequence().Permutations() = abb, bab, bba
See Also