ParallelEnumerable.Max メソッド
定義
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
オーバーロード
Max(ParallelQuery<Nullable<Single>>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Single>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Nullable<Int64>>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Nullable<Int32>>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Nullable<Double>>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Double>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Int64>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Int32>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Decimal>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Nullable<Decimal>>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max<TSource,TResult>(ParallelQuery<TSource>, Func<TSource,TResult>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int64>>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Single>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Single>>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int32>>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Double>>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Decimal>>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Int64>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Int32>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Double>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Decimal>) |
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
Max<TSource>(ParallelQuery<TSource>) |
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values. |
Max(ParallelQuery<Nullable<Single>>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Max(System::Linq::ParallelQuery<Nullable<float>> ^ source);
public static Nullable<float> Max (this System.Linq.ParallelQuery<Nullable<float>> source);
static member Max : System.Linq.ParallelQuery<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Max (source As ParallelQuery(Of Nullable(Of Single))) As Nullable(Of Single)
パラメーター
- source
- ParallelQuery<Nullable<Single>>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Single>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static float Max(System::Linq::ParallelQuery<float> ^ source);
public static float Max (this System.Linq.ParallelQuery<float> source);
static member Max : System.Linq.ParallelQuery<single> -> single
<Extension()>
Public Function Max (source As ParallelQuery(Of Single)) As Single
パラメーター
- source
- ParallelQuery<Single>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Nullable<Int64>>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Max(System::Linq::ParallelQuery<Nullable<long>> ^ source);
public static Nullable<long> Max (this System.Linq.ParallelQuery<Nullable<long>> source);
static member Max : System.Linq.ParallelQuery<Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Max (source As ParallelQuery(Of Nullable(Of Long))) As Nullable(Of Long)
パラメーター
- source
- ParallelQuery<Nullable<Int64>>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Nullable<Int32>>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Max(System::Linq::ParallelQuery<Nullable<int>> ^ source);
public static Nullable<int> Max (this System.Linq.ParallelQuery<Nullable<int>> source);
static member Max : System.Linq.ParallelQuery<Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Max (source As ParallelQuery(Of Nullable(Of Integer))) As Nullable(Of Integer)
パラメーター
- source
- ParallelQuery<Nullable<Int32>>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Nullable<Double>>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Max(System::Linq::ParallelQuery<Nullable<double>> ^ source);
public static Nullable<double> Max (this System.Linq.ParallelQuery<Nullable<double>> source);
static member Max : System.Linq.ParallelQuery<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Max (source As ParallelQuery(Of Nullable(Of Double))) As Nullable(Of Double)
パラメーター
- source
- ParallelQuery<Nullable<Double>>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Double>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static double Max(System::Linq::ParallelQuery<double> ^ source);
public static double Max (this System.Linq.ParallelQuery<double> source);
static member Max : System.Linq.ParallelQuery<double> -> double
<Extension()>
Public Function Max (source As ParallelQuery(Of Double)) As Double
パラメーター
- source
- ParallelQuery<Double>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Int64>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static long Max(System::Linq::ParallelQuery<long> ^ source);
public static long Max (this System.Linq.ParallelQuery<long> source);
static member Max : System.Linq.ParallelQuery<int64> -> int64
<Extension()>
Public Function Max (source As ParallelQuery(Of Long)) As Long
パラメーター
- source
- ParallelQuery<Int64>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Int32>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static int Max(System::Linq::ParallelQuery<int> ^ source);
public static int Max (this System.Linq.ParallelQuery<int> source);
static member Max : System.Linq.ParallelQuery<int> -> int
<Extension()>
Public Function Max (source As ParallelQuery(Of Integer)) As Integer
パラメーター
- source
- ParallelQuery<Int32>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Decimal>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static System::Decimal Max(System::Linq::ParallelQuery<System::Decimal> ^ source);
public static decimal Max (this System.Linq.ParallelQuery<decimal> source);
static member Max : System.Linq.ParallelQuery<decimal> -> decimal
<Extension()>
Public Function Max (source As ParallelQuery(Of Decimal)) As Decimal
パラメーター
- source
- ParallelQuery<Decimal>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max(ParallelQuery<Nullable<Decimal>>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Max(System::Linq::ParallelQuery<Nullable<System::Decimal>> ^ source);
public static Nullable<decimal> Max (this System.Linq.ParallelQuery<Nullable<decimal>> source);
static member Max : System.Linq.ParallelQuery<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Max (source As ParallelQuery(Of Nullable(Of Decimal))) As Nullable(Of Decimal)
パラメーター
- source
- ParallelQuery<Nullable<Decimal>>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max<TSource,TResult>(ParallelQuery<TSource>, Func<TSource,TResult>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource, typename TResult>
[System::Runtime::CompilerServices::Extension]
static TResult Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, TResult> ^ selector);
public static TResult Max<TSource,TResult> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,TResult> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, 'Result> -> 'Result
<Extension()>
Public Function Max(Of TSource, TResult) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, TResult)) As TResult
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
- TResult
selector
によって返される値の型。The type of the value returned by selector
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
- selector
- Func<TSource,TResult>
各要素に適用する変換関数。A transform function to apply to each element.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int64>>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<long>> ^ selector);
public static Nullable<long> Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,Nullable<long>> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Long))) As Nullable(Of Long)
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Single>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static float Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, float> ^ selector);
public static float Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,float> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, single> -> single
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Single)) As Single
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Single>>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<float>> ^ selector);
public static Nullable<float> Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,Nullable<float>> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Single))) As Nullable(Of Single)
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int32>>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<int>> ^ selector);
public static Nullable<int> Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,Nullable<int>> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Integer))) As Nullable(Of Integer)
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Double>>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<double>> ^ selector);
public static Nullable<double> Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,Nullable<double>> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Double))) As Nullable(Of Double)
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Decimal>>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<System::Decimal>> ^ selector);
public static Nullable<decimal> Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,Nullable<decimal>> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Decimal))) As Nullable(Of Decimal)
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
各要素に適用する変換関数。A transform function to apply to each element.
戻り値
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
に要素が含まれていません。source
contains no elements.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Int64>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static long Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, long> ^ selector);
public static long Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,long> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, int64> -> int64
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Long)) As Long
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Int32>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, int> ^ selector);
public static int Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,int> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, int> -> int
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Integer)) As Integer
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Double>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, double> ^ selector);
public static double Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,double> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, double> -> double
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Double)) As Double
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>, Func<TSource,Decimal>)
シーケンスの各要素に対して変換関数を並列で呼び出し、最大値を返します。Invokes in parallel a transform function on each element of a sequence and returns the maximum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Decimal Max(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, System::Decimal> ^ selector);
public static decimal Max<TSource> (this System.Linq.ParallelQuery<TSource> source, Func<TSource,decimal> selector);
static member Max : System.Linq.ParallelQuery<'Source> * Func<'Source, decimal> -> decimal
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Decimal)) As Decimal
型パラメーター
- TSource
source
の要素の型。The type of elements of source
.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
または selector
が null 参照 (Visual Basic の場合は Nothing) です。source
or selector
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.
こちらもご覧ください
Max<TSource>(ParallelQuery<TSource>)
値の並列シーケンスの最大値を返します。Returns the maximum value in a parallel sequence of values.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Max(System::Linq::ParallelQuery<TSource> ^ source);
public static TSource Max<TSource> (this System.Linq.ParallelQuery<TSource> source);
static member Max : System.Linq.ParallelQuery<'Source> -> 'Source
<Extension()>
Public Function Max(Of TSource) (source As ParallelQuery(Of TSource)) As TSource
型パラメーター
- TSource
ソース シーケンス内の要素の型。The type of elements in the source sequence.
パラメーター
- source
- ParallelQuery<TSource>
最大値を確認する対象となる値のシーケンス。A sequence of values to determine the maximum value of.
戻り値
シーケンスの最大値。The maximum value in the sequence.
例外
WithCancellation
経由で渡されたトークンで、クエリが取り消されました。The query was canceled with the token passed in through WithCancellation
.
source
が null 参照 (Visual Basic では Nothing) です。source
is a null reference (Nothing in Visual Basic).
クエリ評価中に 1 つまたは複数の例外が発生しました。One or more exceptions occurred during the evaluation of the query.
source
には要素が含まれていません。TSource
は null 非許容の値型です。source
contains no elements and TSource
is a non-nullable value type.