Attempts to create an aggregator specialized to operate on values of the specified type.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual bool TrySpecialize(
Type type,
out IAggregator<T> aggregator
)
Protected Overridable Function TrySpecialize (
type As Type,
<OutAttribute> ByRef aggregator As IAggregator(Of T)
) As Boolean
protected:
virtual bool TrySpecialize(
Type^ type,
[OutAttribute] IAggregator<T>^% aggregator
)
abstract TrySpecialize :
type : Type *
aggregator : IAggregator<'T> byref -> bool
override TrySpecialize :
type : Type *
aggregator : IAggregator<'T> byref -> bool
Parameters
- type
- Type: SystemType
The type to specialize for. - aggregator
- Type: Extreme.DataAnalysisIAggregatorT
On return, the specialized aggregator.
Return Value
Type:
Boolean if a specialized aggregator was created;
otherwise
.
Reference