Contains methods for generating combinatorial sequences over collections.
| Name | Description |
---|
  | 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.
|
  | CombinationsT(IListT, 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.
|
  | CombinationsWithReplacementT(IListT, 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.
|
  | PermutationsT(IListT, Boolean) |
Enumerates the indexes of all permutations
from a set of items.
|
  | PermutationsT(IListT, 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.
|
  | ProductT(IListT, Int32) |
Enumerates the Cartesian product of the specified length from a set of items.
|