Creates an AsyncPipelineOperator — a composition of sync/async operators into a chain.
— input data type
— output data type
— array of sync/async operators for sequential application
const op = createAsyncPipelineOperator<number, string>([ createAsyncMapOperator<number, number>(async (n) => n * 2), createMapOperator<number, string>(n => n.toString()),]);await op.apply(21); // "42" Copy
const op = createAsyncPipelineOperator<number, string>([ createAsyncMapOperator<number, number>(async (n) => n * 2), createMapOperator<number, string>(n => n.toString()),]);await op.apply(21); // "42"
Creates an AsyncPipelineOperator — a composition of sync/async operators into a chain.