Class Max
Represents an operator that computes the maximum element in an observable sequence.
The Max
operator collects all the values from the source sequence and emits a single value representing the largest of all values. The single result value is emitted only when the source sequence terminates successfully.
Example
Use Max
to report the maximum value at the end of the sequence.
[Combinator]
public class Max
- Inheritance
-
Max
- Inherited Members
Methods
- Process(IObservable<decimal>)
Returns the maximum value in an observable sequence of decimal values.
- Process(IObservable<double>)
Returns the maximum value in an observable sequence of double values.
- Process(IObservable<int>)
Returns the maximum value in an observable sequence of int values.
- Process(IObservable<long>)
Returns the maximum value in an observable sequence of long values.
- Process(IObservable<decimal?>)
Returns the maximum value in an observable sequence of nullable decimal values.
- Process(IObservable<double?>)
Returns the maximum value in an observable sequence of nullable double values.
- Process(IObservable<int?>)
Returns the maximum value in an observable sequence of nullable int values.
- Process(IObservable<long?>)
Returns the maximum value in an observable sequence of nullable long values.
- Process(IObservable<float?>)
Returns the maximum value in an observable sequence of nullable float values.
- Process(IObservable<float>)
Returns the maximum value in an observable sequence of float values.
- Process<TSource>(IObservable<TSource>)
Returns the maximum element in an observable sequence.