Aggregates the elements of a sequence and returns the result.
Namespace: Extreme.DataAnalysisAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public virtual bool TryAggregate(
IEnumerable<T> values,
bool checkForMissingValues,
out U result
)
Public Overridable Function TryAggregate (
values As IEnumerable(Of T),
checkForMissingValues As Boolean,
<OutAttribute> ByRef result As U
) As Boolean
public:
virtual bool TryAggregate(
IEnumerable<T>^ values,
bool checkForMissingValues,
[OutAttribute] U% result
)
abstract TryAggregate :
values : IEnumerable<'T> *
checkForMissingValues : bool *
result : 'U byref -> bool
override TryAggregate :
values : IEnumerable<'T> *
checkForMissingValues : bool *
result : 'U byref -> bool
Parameters
- values
- Type: System.Collections.GenericIEnumerableT
A sequence of values. - checkForMissingValues
- Type: SystemBoolean
Indicates whether
missing values should be filtered from the sequence. - result
- Type: U
The result of the aggregation.
Return Value
Type:
Boolean if the aggregation produced a result;
otherwise
.
Numerical Libraries
Supported in: 6.0
Reference