AggregatorGroup<TResult>.Specialize Method

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Specialize(Type) Returns an aggregator specialized to operate on values of the specified type.
Specialize<T>() Returns an aggregator specialized to operate on values of the specified type.

Specialize<T>

Returns an aggregator specialized to operate on values of the specified type.
C#
public Aggregator<T, TResult> Specialize<T>()

Type Parameters

T
The type to specialize for.

Return Value

Aggregator<T, TResult>
The specialized aggregator.

Specialize(Type)

Returns an aggregator specialized to operate on values of the specified type.
C#
public IAggregator<TResult> Specialize(
	Type type
)

Parameters

type  Type
The type to specialize for.

Return Value

IAggregator<TResult>
A specialized aggregator.

See Also