TypePreservingAggregatorGroup Class

Represents an aggregator group where the type of the result is the element type of the input.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public abstract class TypePreservingAggregatorGroup : AggregatorGroup
Inheritance
Object  →  AggregatorGroup  →  TypePreservingAggregatorGroup

Constructors

TypePreservingAggregatorGroup Constructs a new aggregator group.

Properties

EmptyGroupsHaveValue Gets whether the aggregator produces a value for empty groups.
(Inherited from AggregatorGroup)
Name Gets the name of the aggregator group.
(Inherited from AggregatorGroup)

Methods

Aggregate<T>(Vector<T>) Aggregates the elements of a vector and returns the result.
Aggregate<T>(Vector<T>, IGrouping) Aggregates the elements of a vector according to the specified grouping.
AggregateInto<T>(IVector, IGrouping, IVector) Aggregates the specified values according to the specified grouping.
AggregateInto<T>(IVector, IGrouping, Vector<T>) Aggregates the specified values according to the specified grouping.
AggregateInto<T>(Vector<T>, IGrouping, Vector<T>) Groups the elements of a vector according to the specified grouping.
AggregateInto<T>(Vector<T>, Int32[], Vector<T>) Groups the elements of a vector according to the specified level indexes.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Specialize<T> Returns an aggregator specialized to operate on values of the specified type.
ToStringReturns a string that represents the current object.
(Inherited from Object)
TryAggregate<T>(IVector, T) Aggregates the elements of a vector and returns the result.
TryAggregate<T>(Vector<T>, T) Aggregates the elements of a vector and returns the result.
TryAggregate<T>(IEnumerable<T>, Boolean, T) Aggregates the elements of a sequence and returns the result.
TryAggregate<T>(IVector, Array1D<Int32>, Int32, T) Aggregates the specified elements of a vector and returns the result.
TryAggregate<T>(IVector, Int32, Int32, T) Aggregates the specified range of elements of a vector and returns the result.
TryAggregate<T>(Vector<T>, Array1D<Int32>, Int32, T) Aggregates the specified elements of a vector and returns the result.
TryAggregate<T>(Vector<T>, Int32, Int32, T) Aggregates the specified range of elements of a vector and returns the result.
TrySpecialize(Type, IAggregator) Returns an aggregator for the specified element type for input operands.
(Inherited from AggregatorGroup)
TrySpecialize<T>(Aggregator<T, T>) Attempts to create an aggregator specialized to operate on values of the specified type.
TrySpecialize<T>(IAggregator<T>) Attempts to create an aggregator specialized to operate on values of the specified type.

See Also