Click or drag to resize

GeneratorWhere Method

Overload List
  NameDescription
Public methodStatic memberWhereTSource(IGeneratorTSource, IGeneratorBoolean)
Makes a generator that will only generate elements that pass the predicate generated by the predicate generator.
Public methodStatic memberWhereTSource(IGeneratorTSource, FuncTSource, Boolean)
Makes a generator that will only generate elements that pass the predicate.
Public methodStatic memberWhereT(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.
Public methodStatic memberWhereT(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.
Top
See Also