Iterators Methods

Methods

Combinations(Int32, Int32) Enumerates the indexes of all combinations of the specified length from a set of the specified size.
Combinations(Int32, Int32, Int32[]) Enumerates the indexes of all combinations of the specified length from a set of the specified size.
Combinations<T>(IList<T>, Int32) Enumerates all combinations of the specified length from a set of items.
CombinationsWithReplacement(Int32, Int32) Enumerates the indexes of all combinations with replacement of the specified length from a set of the specified size.
CombinationsWithReplacement(Int32, Int32, Int32[]) Enumerates the indexes of all combinations with replacement of the specified length from a set of the specified size.
CombinationsWithReplacement<T>(IList<T>, Int32) Enumerates the indexes of all combinations with replacement of the specified length from a list of items.
Permutations(Int32, Boolean) Enumerates the indexes of all permutations from a set of the specified size.
Permutations(Int32, Boolean, Int32[]) Enumerates the indexes of all permutations from a set of the specified size.
Permutations(Int32, Int32, Boolean) Enumerates the indexes of all permutations of the specified length from a set of the specified size.
Permutations(Int32, Int32, Boolean, Int32[]) Enumerates the indexes of all permutations of the specified length from a set of the specified size.
Permutations<T>(IList<T>, Boolean) Enumerates the indexes of all permutations from a set of items.
Permutations<T>(IList<T>, Int32, Boolean) Enumerates the indexes of all permutations of the specified length from a set of items.
Product(Int32[]) Enumerates the indexes of the Cartesian product of the specified length from a set of the specified size.
Product(Int32, Int32) Enumerates the indexes of the Cartesian product of the specified length from a set of the specified size.
Product(Int32[], Int32[]) Enumerates the indexes of the Cartesian product of the specified length from a set of the specified size.
Product(Int32, Int32, Int32[]) Enumerates the indexes of the Cartesian product of the specified length from a set of the specified size.
Product<T>(IList<T>, Int32) Enumerates the Cartesian product of the specified length from a set of items.

See Also