Computes in parallel the average of a sequence of values.
Overloads Average(ParallelQuery<Single>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Nullable<Int64>>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Nullable<Int32>>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Nullable<Double>>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Nullable<Single>>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Int64>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Int32>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Double>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Decimal>)Computes in parallel the average of a sequence of values.
Average(ParallelQuery<Nullable<Decimal>>)Computes in parallel the average of a sequence of values.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Single>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int64>>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int32>>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Double>>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Single>>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Int64>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Int32>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Double>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Decimal>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Decimal>>)Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
Average(ParallelQuery<Single>)Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static float Average(System::Linq::ParallelQuery<float> ^ source);
public static float Average(this System.Linq.ParallelQuery<float> source);
static member Average : System.Linq.ParallelQuery<single> -> single
<Extension()>
Public Function Average (source As ParallelQuery(Of Single)) As Single
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Linq::ParallelQuery<Nullable<long>> ^ source);
public static double? Average(this System.Linq.ParallelQuery<long?> source);
static member Average : System.Linq.ParallelQuery<Nullable<int64>> -> Nullable<double>
<Extension()>
Public Function Average (source As ParallelQuery(Of Nullable(Of Long))) As Nullable(Of Double)
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Linq::ParallelQuery<Nullable<int>> ^ source);
public static double? Average(this System.Linq.ParallelQuery<int?> source);
static member Average : System.Linq.ParallelQuery<Nullable<int>> -> Nullable<double>
<Extension()>
Public Function Average (source As ParallelQuery(Of Nullable(Of Integer))) As Nullable(Of Double)
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Linq::ParallelQuery<Nullable<double>> ^ source);
public static double? Average(this System.Linq.ParallelQuery<double?> source);
static member Average : System.Linq.ParallelQuery<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Average (source As ParallelQuery(Of Nullable(Of Double))) As Nullable(Of Double)
Parameters Returns
The average of the sequence of values.
ExceptionsOne or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Average(System::Linq::ParallelQuery<Nullable<float>> ^ source);
public static float? Average(this System.Linq.ParallelQuery<float?> source);
static member Average : System.Linq.ParallelQuery<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Average (source As ParallelQuery(Of Nullable(Of Single))) As Nullable(Of Single)
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static double Average(System::Linq::ParallelQuery<long> ^ source);
public static double Average(this System.Linq.ParallelQuery<long> source);
static member Average : System.Linq.ParallelQuery<int64> -> double
<Extension()>
Public Function Average (source As ParallelQuery(Of Long)) As Double
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static double Average(System::Linq::ParallelQuery<int> ^ source);
public static double Average(this System.Linq.ParallelQuery<int> source);
static member Average : System.Linq.ParallelQuery<int> -> double
<Extension()>
Public Function Average (source As ParallelQuery(Of Integer)) As Double
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static double Average(System::Linq::ParallelQuery<double> ^ source);
public static double Average(this System.Linq.ParallelQuery<double> source);
static member Average : System.Linq.ParallelQuery<double> -> double
<Extension()>
Public Function Average (source As ParallelQuery(Of Double)) As Double
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static System::Decimal Average(System::Linq::ParallelQuery<System::Decimal> ^ source);
public static decimal Average(this System.Linq.ParallelQuery<decimal> source);
static member Average : System.Linq.ParallelQuery<decimal> -> decimal
<Extension()>
Public Function Average (source As ParallelQuery(Of Decimal)) As Decimal
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Average(System::Linq::ParallelQuery<Nullable<System::Decimal>> ^ source);
public static decimal? Average(this System.Linq.ParallelQuery<decimal?> source);
static member Average : System.Linq.ParallelQuery<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Average (source As ParallelQuery(Of Nullable(Of Decimal))) As Nullable(Of Decimal)
Parameters Returns
The average of the sequence of values.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static float Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, float> ^ selector);
public static float Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,float> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, single> -> single
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Single)) As Single
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<long>> ^ selector);
public static double? Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,long?> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<int64>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Long))) As Nullable(Of Double)
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int64.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<int>> ^ selector);
public static double? Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,int?> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<int>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Integer))) As Nullable(Of Double)
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<double>> ^ selector);
public static double? Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,double?> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Double))) As Nullable(Of Double)
Type Parameters
The type of elements of source
.
The average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<float>> ^ selector);
public static float? Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,float?> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Single))) As Nullable(Of Single)
Type Parameters
The type of elements of source
.
The average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, long> ^ selector);
public static double Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,long> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, int64> -> double
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Long)) As Double
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, int> ^ selector);
public static double Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,int> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, int> -> double
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Integer)) As Double
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
The sum or count of the elements in the sequence is larger than Int32.MaxValue. -or- One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, double> ^ selector);
public static double Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,double> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, double> -> double
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Double)) As Double
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Decimal Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, System::Decimal> ^ selector);
public static decimal Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,decimal> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, decimal> -> decimal
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Decimal)) As Decimal
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Average(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<System::Decimal>> ^ selector);
public static decimal? Average<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,decimal?> selector);
static member Average : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Average(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Decimal))) As Nullable(Of Decimal)
Type Parameters
The type of elements of source
.
The average of the sequence of values.
Exceptionssource
or selector
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
(Thrown as inner exception in an AggregateException). The selector
function returns a value greater than MaxValue for the element type.
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this articleWas this page helpful?
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4