AggregatorGroup<T>.Specialize Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

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

AggregatorGroup<T>.Specialize<U>

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

Type Parameters

U
The type to specialize for.

Return Value

Aggregator<U, T>
The specialized aggregator.

AggregatorGroup<T>.Specialize(Type)

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

Parameters

type  Type
The type to specialize for.

Return Value

IAggregator<T>
A specialized aggregator.

See Also