DoubleAggregator Struct

Definition

Computes aggregates over a sequence of double values.

This API supports the product infrastructure and is not intended to be used directly from your code.

public value class DoubleAggregator
public struct DoubleAggregator
type DoubleAggregator = struct
Public Structure DoubleAggregator
Inheritance
DoubleAggregator

Properties

AverageResult

This API supports the product infrastructure and is not intended to be used directly from your code.

Computes the average value over a sequence of double values.

IsEmpty

This API supports the product infrastructure and is not intended to be used directly from your code.

Determines whether a sequence of double values is empty.

MaximumResult

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns the maximum value of a sequence of double values.

MinimumResult

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns the minimum value of a sequence of double values.

SumResult

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns the sum of a sequence of double values.

Methods

Average(Double)

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns the average of a sequence of double values.

Create()

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a sequence of double values.

Maximum(Double)

This API supports the product infrastructure and is not intended to be used directly from your code.

Assigns the value parameter to the existing result if the value parameter is greater than the existing result.

Minimum(Double)

This API supports the product infrastructure and is not intended to be used directly from your code.

Assigns the value parameter to the existing result if the value parameter is less than the existing result.

Sum(Double)

This API supports the product infrastructure and is not intended to be used directly from your code.

Adds a Double value to the existing result.

Applies to