Interface: OperatorFunction()<T, R>
Defined in: types.ts:192
Interface representing an operator function for transforming streams.
An operator function takes an input Stream<T>
and returns an output Stream<R>
.
Type Parameters
T
T
The type of the input elements.
R
R
The type of the output elements.
OperatorFunction(
source
):Stream
<R
>
Defined in: types.ts:193
Interface representing an operator function for transforming streams.
An operator function takes an input Stream<T>
and returns an output Stream<R>
.
Parameters
source
Stream
<T
>
Returns
Stream
<R
>