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
sourceObservable<T>The source observable to transform.
Returns
- Observable<T>
The transformed observable.
Type Parameters
TThe element type shared by the source and result.