Table of Contents

Class Max

Namespace
Bonsai.Reactive
Assembly
Bonsai.Core.dll

Represents an operator that computes the maximum element in an observable sequence.

Marble diagram

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.

[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.