• Bypasses elements in an async-iterale sequence as long as a specified condition is true and then returns the remaining elements.

    Type Parameters

    • T

      The type of the elements in the source sequence.

    • S

      The result of the predicate that is truthy/falsy.

    Parameters

    • predicate: ((value, index) => value is S)

      A function to test each element for a condition.

        • (value, index): value is S
        • Parameters

          • value: T
          • index: number

          Returns value is S

    Returns OperatorFunction<T, S>

    An iterable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.

  • Bypasses elements in an async-iterale sequence as long as a specified condition is true and then returns the remaining elements.

    Type Parameters

    • T

      The type of the elements in the source sequence.

    Parameters

    • predicate: ((value, index) => boolean)

      A function to test each element for a condition.

        • (value, index): boolean
        • Parameters

          • value: T
          • index: number

          Returns boolean

    Returns OperatorFunction<T, T>

    An iterable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.

Generated using TypeDoc