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
public bool TrySpecialize<T>(
out Aggregator<T, T> aggregator
)
Public Function TrySpecialize(Of T) (
<OutAttribute> ByRef aggregator As Aggregator(Of T, T)
) As Boolean
public:
generic<typename T>
bool TrySpecialize(
[OutAttribute] Aggregator<T, T>^% aggregator
)
member TrySpecialize :
aggregator : Aggregator<'T, 'T> byref -> bool
Parameters
- aggregator
- Type: Extreme.DataAnalysisAggregatorT, T
On return, the specialized aggregator.
Type Parameters
- T
- The type to specialize for.
Return Value
Type:
Boolean if a specialized aggregator was created;
otherwise
.
Reference