Skip to content

@epikodelabs/actionstack


@epikodelabs/actionstack / OperatorFunction

Interface: OperatorFunction()<T, R>

Defined in: types.ts:250

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:251

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>

Released under the MIT License.