ISequence T  ReduceRight Method A Sandcastle Documented Class Library
Reduces the elements of this sequence using the specified function, going right to left. If this sequence represents an infinite set or series, this will never return!

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
T ReduceRight(
	Func<T, T, T> op
)

Parameters

op
Type: System Func T, T, T 
The operation to perform on successive elements of the sequence.

Return Value

Type: T
The accumulated value from successive applications of op.
See Also