Returns 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
public override bool TrySpecialize(
Type type,
out IAggregator aggregator
)
Public Overrides Function TrySpecialize (
type As Type,
<OutAttribute> ByRef aggregator As IAggregator
) As Boolean
public:
virtual bool TrySpecialize(
Type^ type,
[OutAttribute] IAggregator^% aggregator
) override
abstract TrySpecialize :
type : Type *
aggregator : IAggregator byref -> bool
override TrySpecialize :
type : Type *
aggregator : IAggregator byref -> bool
Parameters
- type
- Type: SystemType
The type to specialize for. - aggregator
- Type: Extreme.DataAnalysisIAggregator
On return, the aggregator specialized for
elements of type type,
or if no specialized aggregator exists.
Return Value
Type:
Boolean if a specialized aggregator could be created;
otherwise
.
Reference