Table of Contents

Delegate MonoTypeOperatorFunction<T>

Namespace
RxSharp
Assembly
RxSharp.dll

An OperatorFunction<TSource, TResult> whose source and result element types are the same, e.g. Filter or Take.

public delegate Observable<T> MonoTypeOperatorFunction<T>(Observable<T> source)

Parameters

source Observable<T>

The source observable to transform.

Returns

Observable<T>

The transformed observable.

Type Parameters

T

The element type shared by the source and result.