MemoryExtensions.Min Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| Min<T>(ReadOnlySpan<T>) | |
| Min<T>(ReadOnlySpan<T>, IComparer<T>) |
Min<T>(ReadOnlySpan<T>)
- Source:
- MemoryExtensions.MinMax.cs
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Min(ReadOnlySpan<T> span);
public static T? Min<T>(this ReadOnlySpan<T> span);
static member Min : ReadOnlySpan<'T> -> 'T
<Extension()>
Public Function Min(Of T) (span As ReadOnlySpan(Of T)) As T
Type Parameters
- T
Parameters
- span
- ReadOnlySpan<T>
Returns
Applies to
Min<T>(ReadOnlySpan<T>, IComparer<T>)
- Source:
- MemoryExtensions.MinMax.cs
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Min(ReadOnlySpan<T> span, System::Collections::Generic::IComparer<T> ^ comparer);
public static T? Min<T>(this ReadOnlySpan<T> span, System.Collections.Generic.IComparer<T>? comparer);
static member Min : ReadOnlySpan<'T> * System.Collections.Generic.IComparer<'T> -> 'T
<Extension()>
Public Function Min(Of T) (span As ReadOnlySpan(Of T), comparer As IComparer(Of T)) As T
Type Parameters
- T
Parameters
- span
- ReadOnlySpan<T>
- comparer
- IComparer<T>