Click or drag to resize

DVectorReduce Method

Creates an aggregate value by applying the reducer to each item.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.7.0+6baf2f2fa1d256420275372aea03344dd79bdd55
Syntax
C#
public double Reduce(
	double seed,
	Func<double, double, double> reducer
)

Parameters

seed  Double
The initial value.
reducer  FuncDouble, Double, Double
The reducing function.

Return Value

Double
The final synthesized value.
See Also