Returns the minimum value in a parallel sequence of values.
Overloads Min(ParallelQuery<Single>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Nullable<Single>>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Nullable<Int64>>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Nullable<Int32>>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Nullable<Double>>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Nullable<Decimal>>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Int64>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Int32>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Double>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Decimal>)Returns the minimum value in a parallel sequence of values.
Min<TSource,TResult>(ParallelQuery<TSource>, Func<TSource,TResult>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Single>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Single>>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int32>>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Double>>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Int64>>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Int64>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Int32>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Nullable<Decimal>>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Double>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>, Func<TSource,Decimal>)Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
Min<TSource>(ParallelQuery<TSource>)Returns the minimum value in a parallel sequence of values.
Min(ParallelQuery<Single>)Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static float Min(System::Linq::ParallelQuery<float> ^ source);
public static float Min(this System.Linq.ParallelQuery<float> source);
static member Min : System.Linq.ParallelQuery<single> -> single
<Extension()>
Public Function Min (source As ParallelQuery(Of Single)) As Single
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements and TSource
is a non-nullable value type.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Min(System::Linq::ParallelQuery<Nullable<float>> ^ source);
public static float? Min(this System.Linq.ParallelQuery<float?> source);
static member Min : System.Linq.ParallelQuery<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Min (source As ParallelQuery(Of Nullable(Of Single))) As Nullable(Of Single)
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Min(System::Linq::ParallelQuery<Nullable<long>> ^ source);
public static long? Min(this System.Linq.ParallelQuery<long?> source);
static member Min : System.Linq.ParallelQuery<Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Min (source As ParallelQuery(Of Nullable(Of Long))) As Nullable(Of Long)
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Min(System::Linq::ParallelQuery<Nullable<int>> ^ source);
public static int? Min(this System.Linq.ParallelQuery<int?> source);
static member Min : System.Linq.ParallelQuery<Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Min (source As ParallelQuery(Of Nullable(Of Integer))) As Nullable(Of Integer)
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Min(System::Linq::ParallelQuery<Nullable<double>> ^ source);
public static double? Min(this System.Linq.ParallelQuery<double?> source);
static member Min : System.Linq.ParallelQuery<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Min (source As ParallelQuery(Of Nullable(Of Double))) As Nullable(Of Double)
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Min(System::Linq::ParallelQuery<Nullable<System::Decimal>> ^ source);
public static decimal? Min(this System.Linq.ParallelQuery<decimal?> source);
static member Min : System.Linq.ParallelQuery<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Min (source As ParallelQuery(Of Nullable(Of Decimal))) As Nullable(Of Decimal)
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static long Min(System::Linq::ParallelQuery<long> ^ source);
public static long Min(this System.Linq.ParallelQuery<long> source);
static member Min : System.Linq.ParallelQuery<int64> -> int64
<Extension()>
Public Function Min (source As ParallelQuery(Of Long)) As Long
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements and TSource
is a non-nullable value type.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static int Min(System::Linq::ParallelQuery<int> ^ source);
public static int Min(this System.Linq.ParallelQuery<int> source);
static member Min : System.Linq.ParallelQuery<int> -> int
<Extension()>
Public Function Min (source As ParallelQuery(Of Integer)) As Integer
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements and TSource
is a non-nullable value type.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static double Min(System::Linq::ParallelQuery<double> ^ source);
public static double Min(this System.Linq.ParallelQuery<double> source);
static member Min : System.Linq.ParallelQuery<double> -> double
<Extension()>
Public Function Min (source As ParallelQuery(Of Double)) As Double
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements and TSource
is a non-nullable value type.
Returns the minimum value in a parallel sequence of values.
public:
[System::Runtime::CompilerServices::Extension]
static System::Decimal Min(System::Linq::ParallelQuery<System::Decimal> ^ source);
public static decimal Min(this System.Linq.ParallelQuery<decimal> source);
static member Min : System.Linq.ParallelQuery<decimal> -> decimal
<Extension()>
Public Function Min (source As ParallelQuery(Of Decimal)) As Decimal
Parameters Returns
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements and TSource
is a non-nullable value type.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource, typename TResult>
[System::Runtime::CompilerServices::Extension]
static TResult Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, TResult> ^ selector);
public static TResult Min<TSource,TResult>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,TResult> selector);
public static TResult? Min<TSource,TResult>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,TResult> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, 'Result> -> 'Result
<Extension()>
Public Function Min(Of TSource, TResult) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, TResult)) As TResult
Type Parameters
The type of elements of source
.
The type of the value returned by selector
.
A transform function to apply to each element.
ReturnsTResult
The minimum value in the sequence.
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 and TSource
is a non-nullable value type.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static float Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, float> ^ selector);
public static float Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,float> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, single> -> single
<Extension()>
Public Function Min(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 minimum value in the sequence.
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 and TSource
is a non-nullable value type.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<float>> ^ selector);
public static float? Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,float?> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Min(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 minimum value in the sequence.
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.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<int>> ^ selector);
public static int? Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,int?> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Min(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Integer))) As Nullable(Of Integer)
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe minimum value in the sequence.
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.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<double>> ^ selector);
public static double? Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,double?> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Min(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 minimum value in the sequence.
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.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<long>> ^ selector);
public static long? Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,long?> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Min(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Nullable(Of Long))) As Nullable(Of Long)
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe minimum value in the sequence.
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.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static long Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, long> ^ selector);
public static long Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,long> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, int64> -> int64
<Extension()>
Public Function Min(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Long)) As Long
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe minimum value in the sequence.
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 and TSource
is a non-nullable value type.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, int> ^ selector);
public static int Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,int> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, int> -> int
<Extension()>
Public Function Min(Of TSource) (source As ParallelQuery(Of TSource), selector As Func(Of TSource, Integer)) As Integer
Type Parameters
The type of elements of source
.
A transform function to apply to each element.
ReturnsThe minimum value in the sequence.
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 and TSource
is a non-nullable value type.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, Nullable<System::Decimal>> ^ selector);
public static decimal? Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,decimal?> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Min(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 minimum value in the sequence.
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.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, double> ^ selector);
public static double Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,double> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, double> -> double
<Extension()>
Public Function Min(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 minimum value in the sequence.
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 and TSource
is a non-nullable value type.
Invokes in parallel a transform function on each element of a sequence and returns the minimum value.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Decimal Min(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, System::Decimal> ^ selector);
public static decimal Min<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,decimal> selector);
static member Min : System.Linq.ParallelQuery<'Source> * Func<'Source, decimal> -> decimal
<Extension()>
Public Function Min(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 minimum value in the sequence.
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 and TSource
is a non-nullable value type.
Returns the minimum value in a parallel sequence of values.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Min(System::Linq::ParallelQuery<TSource> ^ source);
public static TSource Min<TSource>(this System.Linq.ParallelQuery<TSource> source);
public static TSource? Min<TSource>(this System.Linq.ParallelQuery<TSource> source);
static member Min : System.Linq.ParallelQuery<'Source> -> 'Source
<Extension()>
Public Function Min(Of TSource) (source As ParallelQuery(Of TSource)) As TSource
Type Parameters
The type of elements of source
.
TSource
The minimum value in the sequence.
Exceptionssource
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements and TSource
is a non-nullable value 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