Aggregator2Group<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.

Aggregator2Group<T>.Specialize<U>

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

Type Parameters

U
The type to specialize for.

Return Value

Aggregator2<U, T>
The specialized aggregator.

Aggregator2Group<T>.Specialize(Type)

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

Parameters

type  Type
The type to specialize for.

Return Value

IAggregator2<T>
A specialized aggregator.

See Also