Function composeTransducers

Composes multiple transducers into a single transformation pipeline.

  • Type Parameters

    • A

      The input type.

    • Z

      The final output type.

    Parameters

    • Rest...transducers: Transducer<any, any>[]

      The transducers to compose.

    Returns Transducer<A, Z>

    • A transducer that applies all transformations in sequence.