ParallelEnumerable::Min Method

.NET Framework (current version)
 

Returns the minimum value in a parallel sequence of values.

Namespace:   System.Linq
Assembly:  System.Core (in System.Core.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Decimal>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Double>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Int32>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Int64>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Nullable<Decimal>>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Nullable<Double>>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Nullable<Int32>>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Nullable<Int64>>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Nullable<Single>>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin(ParallelQuery<Single>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^)

Returns the minimum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Decimal>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Double>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Int32>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Int64>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Decimal>>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Double>>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Int32>>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Int64>>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Single>>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource>(ParallelQuery<TSource>^, Func<TSource, Single>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

System_CAPS_pubmethodSystem_CAPS_staticMin<TSource, TResult>(ParallelQuery<TSource>^, Func<TSource, TResult>^)

Invokes in parallel a transform function on each element of a sequence and returns the minimum value.

Return to top
Show: