Sequence T  Reduce Method A Sandcastle Documented Class Library
Reduces the elements of this sequence using the specified function. 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
public T Reduce(
	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.

Implements

ISequence T  Reduce(Func T, T, T )
See Also