GeneratorWhere Method |
| Name | Description | |
|---|---|---|
| WhereTSource(IGeneratorTSource, IGeneratorBoolean) |
Makes a generator that will only generate elements that pass the predicate generated by the predicate generator.
| |
| WhereTSource(IGeneratorTSource, FuncTSource, Boolean) |
Makes a generator that will only generate elements that pass the predicate.
| |
| WhereT(IGeneratorT, IGeneratorBoolean, Int32) |
Makes a generator that will only generate elements that pass the predicate generated by
the predicate generator. If the source elements does not provide
elements that pass the predicate for the given number of maximum iterations, an exception is thrown.
This is to prevent a stalling the generator forever.
| |
| WhereT(IGeneratorT, FuncT, Boolean, Int32) |
Makes a generator that will only generate elements that pass the predicate. If the source elements does not provide
elements that pass the predicate for the given number of maximum iterations, an exception is thrown.
This is to prevent a stalling the generator forever.
|