BinaryAccumulatingAggregator<T1, T2, TResult, TIntermediate, TConverter1, TConverter2, TAccumulator> Class

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public class BinaryAccumulatingAggregator<T1, T2, TResult, TIntermediate, TConverter1, TConverter2, TAccumulator> : BinaryAggregator<T1, T2, TResult>
where TConverter1 : struct, new(), IFromConverter<T1>
where TConverter2 : struct, new(), IFromConverter<T2>
where TAccumulator : struct, new(), IBinaryAccumulator<TIntermediate, TIntermediate>
Inheritance
Object  →  BinaryAggregator<T1, T2, TResult>  →  BinaryAccumulatingAggregator<T1, T2, TResult, TIntermediate, TConverter1, TConverter2, TAccumulator>

Type Parameters

T1
T2
TResult
TIntermediate
TConverter1
TConverter2
TAccumulator

Constructors

Properties

EmptyGroupsHaveValue Gets whether the aggregator produces a value for empty groups.
(Inherited from BinaryAggregator<T1, T2, TResult>)
EmptyValue Gets the value that is returned when the input is empty.
(Inherited from BinaryAggregator<T1, T2, TResult>)
SupportsDirectAggregation Gets whether the aggregator supports computing the aggregation for all groups directly from the group levels.
(Inherited from BinaryAggregator<T1, T2, TResult>)

Methods

Aggregate(IEnumerable<T1>, IEnumerable<T2>, Boolean) Aggregates the elements of two sequences pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
Aggregate(ReadOnlySpan<T1>, ReadOnlySpan<T2>, Boolean) Aggregates the elements of two span slices pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
Aggregate(Int32, ReadOnlySpanSlice<T1>, ReadOnlySpanSlice<T2>, Boolean) Aggregates the elements of two span slices pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
Aggregate(Vector<T1>, Vector<T2>, Array1D<Int32>, Int32, Boolean) Aggregates the specified elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
Aggregate(Vector<T1>, Vector<T2>, Int32, Int32, Boolean) Aggregates the specified range of elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
AggregateBy(Vector<T1>, Vector<T2>, IGrouping, Vector<TResult>) Groups the elements of a vector according to the specified grouping.
(Inherited from BinaryAggregator<T1, T2, TResult>)
AggregateBy(Vector<T1>, Vector<T2>, Int32[], Vector<TResult>) Groups the elements of a vector according to the specified level indexes.
(Inherited from BinaryAggregator<T1, T2, TResult>)
AggregateInto(Vector<T1>, Vector<T2>, IGrouping, Vector<TResult>) Groups the elements of a vector according to the specified grouping.
(Inherited from BinaryAggregator<T1, T2, TResult>)
Obsolete.
AggregateInto(Vector<T1>, Vector<T2>, Int32[], Vector<TResult>) Groups the elements of a vector according to the specified level indexes.
(Inherited from BinaryAggregator<T1, T2, TResult>)
Obsolete.
AggregateWhere<TPredicate>(IEnumerable<T1>, IEnumerable<T2>, TPredicate, Boolean) Aggregates the elements of two sequences pairwise subject to a predicate, and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
AggregateWhere<TPredicate>(ReadOnlySpan<T1>, ReadOnlySpan<T2>, TPredicate, Boolean) Aggregates the elements of two spans pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
AggregateWhere<TPredicate>(Vector<T1>, Vector<T2>, TPredicate, Boolean) Aggregates the elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
AggregateWhere<TPredicate>(Int32, ReadOnlySpanSlice<T1>, ReadOnlySpanSlice<T2>, TPredicate, Boolean) Aggregates the elements of two span slices pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
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)
ToStringReturns a string that represents the current object.
(Inherited from Object)
TryAggregate(Vector<T1>, Vector<T2>, TResult) Aggregates the elements of a vector and returns the result.
(Overrides BinaryAggregator<T1, T2, TResult>.TryAggregate(Vector<T1>, Vector<T2>, TResult))
TryAggregate(Vector<T1>, Vector<T2>, Boolean) Aggregates the elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
TryAggregate(IEnumerable<T1>, IEnumerable<T2>, Boolean, TResult) Aggregates the elements of two sequences pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
TryAggregate(ReadOnlySpan<T1>, ReadOnlySpan<T2>, Boolean, TResult) Aggregates the elements of two spans pairwise and returns the result.
(Overrides BinaryAggregator<T1, T2, TResult>.TryAggregate(ReadOnlySpan<T1>, ReadOnlySpan<T2>, Boolean, TResult))
TryAggregate(Int32, ReadOnlySpanSlice<T1>, ReadOnlySpanSlice<T2>, Boolean, TResult) Aggregates the elements of two span slices pairwise and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
TryAggregate(Vector<T1>, Vector<T2>, Array1D<Int32>, Int32, TResult) Aggregates the specified elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
TryAggregate(Vector<T1>, Vector<T2>, Int32, Int32, TResult) Aggregates the specified range of elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
TryAggregateWhere<TPredicate>(IEnumerable<T1>, IEnumerable<T2>, TPredicate, Boolean, TResult) Aggregates the elements of two sequences pairwise subject to a predicate, and returns the result.
(Overrides BinaryAggregator<T1, T2, TResult>.TryAggregateWhere<TPredicate>(IEnumerable<T1>, IEnumerable<T2>, TPredicate, Boolean, TResult))
TryAggregateWhere<TPredicate>(ReadOnlySpan<T1>, ReadOnlySpan<T2>, TPredicate, Boolean, TResult) Aggregates the elements of two spans pairwise and returns the result.
(Overrides BinaryAggregator<T1, T2, TResult>.TryAggregateWhere<TPredicate>(ReadOnlySpan<T1>, ReadOnlySpan<T2>, TPredicate, Boolean, TResult))
TryAggregateWhere<TPredicate>(Vector<T1>, Vector<T2>, TPredicate, Boolean, TResult) Aggregates the elements of a vector and returns the result.
(Inherited from BinaryAggregator<T1, T2, TResult>)
TryAggregateWhere<TPredicate>(Int32, ReadOnlySpanSlice<T1>, ReadOnlySpanSlice<T2>, TPredicate, Boolean, TResult) Aggregates the elements of two span slices pairwise and returns the result.
(Overrides BinaryAggregator<T1, T2, TResult>.TryAggregateWhere<TPredicate>(Int32, ReadOnlySpanSlice<T1>, ReadOnlySpanSlice<T2>, TPredicate, Boolean, TResult))
TryGetAccumulator Attempts to get an accumulator that can be used to perform the aggregation.
(Inherited from BinaryAggregator<T1, T2, TResult>)

See Also