[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
Provides a N! (n-faculty) number of permutations for N elements.
Example: for 3 elements provides 6 permutations exactly as follows:
{0, 1, 2}
{0, 2, 1}
{1, 0, 2}
{1, 2, 0}
{2, 0, 1}
{2, 1, 0}
Namespace: net.esper.collection
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Class PermutationEnumeration _ Implements IEnumerator(Of Integer()), IDisposable, IEnumerator |
C# |
---|
public class PermutationEnumeration : IEnumerator<int[]>, IDisposable, IEnumerator |
Visual C++ |
---|
public ref class PermutationEnumeration : IEnumerator<array<int>^>, IDisposable, IEnumerator |