• Internal

    Create a new generator that yields elements from the input iterable that satisfy the predicate.

    Type Parameters

    • T

      The element type of the input iterable

    Parameters

    • iterable: Iterable<T>

      The input iterable

    • predicate: Predicate<T>

      The predicate function

    Returns Generator<T>

    A new generator with elements from the input iterable that satisfy the predicate.

Generated using TypeDoc