Table of Contents

Delegate OperatorFunction<TSource, TResult>

Namespace
RxSharp
Assembly
RxSharp.dll

A function that transforms an Observable<T> into an Observable<T>, e.g. the shape of a bound operator ready to apply via Pipe<TSource, TResult>(Observable<TSource>, OperatorFunction<TSource, TResult>).

public delegate Observable<TResult> OperatorFunction<TSource, TResult>(Observable<TSource> source)

Parameters

source Observable<TSource>

The source observable to transform.

Returns

Observable<TResult>

The transformed observable.

Type Parameters

TSource

The element type of the source observable.

TResult

The element type of the resulting observable.