Function scan

  • Operator that runs with the latest and the current value of a node. Works like the RxJS scan operator.

    Type Parameters

    • I

    • O

    Parameters

    • accumulator: ((current, value) => O)
        • (current, value): O
        • Parameters

          • current: O
          • value: I

          Returns O

    • seed: O

    Returns Operator<I, O>

Generated using TypeDoc