Sdílet prostřednictvím


MemoryExtensions.ContainsAnyInRange Metoda

Definice

Přetížení

ContainsAnyInRange<T>(ReadOnlySpan<T>, T, T)

Vyhledá libovolnou hodnotu v rozsahu mezi lowInclusive a highInclusive(včetně).

ContainsAnyInRange<T>(Span<T>, T, T)

Vyhledá libovolnou hodnotu v rozsahu mezi lowInclusive a highInclusive( včetně) a vrátí true pokud se najde. Pokud se nenajde, vrátí false.

ContainsAnyInRange<T>(ReadOnlySpan<T>, T, T)

Zdroj:
MemoryExtensions.cs
Zdroj:
MemoryExtensions.cs

Vyhledá libovolnou hodnotu v rozsahu mezi lowInclusive a highInclusive(včetně).

public:
generic <typename T>
 where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
 static bool ContainsAnyInRange(ReadOnlySpan<T> span, T lowInclusive, T highInclusive);
public static bool ContainsAnyInRange<T> (this ReadOnlySpan<T> span, T lowInclusive, T highInclusive) where T : IComparable<T>;
static member ContainsAnyInRange : ReadOnlySpan<'T (requires 'T :> IComparable<'T>)> * 'T * 'T -> bool (requires 'T :> IComparable<'T>)
<Extension()>
Public Function ContainsAnyInRange(Of T As IComparable(Of T)) (span As ReadOnlySpan(Of T), lowInclusive As T, highInclusive As T) As Boolean

Parametry typu

T

Parametry

span
ReadOnlySpan<T>

Rozsah, který se má prohledávat.

lowInclusive
T

Dolní mez včetně rozsahu, pro který se má hledat.

highInclusive
T

Horní mez včetně oblasti, pro kterou se má hledat.

Návraty

true, pokud byla nalezena. Pokud se nenajde, vrátí false.

Platí pro

ContainsAnyInRange<T>(Span<T>, T, T)

Zdroj:
MemoryExtensions.cs
Zdroj:
MemoryExtensions.cs

Vyhledá libovolnou hodnotu v rozsahu mezi lowInclusive a highInclusive( včetně) a vrátí true pokud se najde. Pokud se nenajde, vrátí false.

public:
generic <typename T>
 where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
 static bool ContainsAnyInRange(Span<T> span, T lowInclusive, T highInclusive);
public static bool ContainsAnyInRange<T> (this Span<T> span, T lowInclusive, T highInclusive) where T : IComparable<T>;
static member ContainsAnyInRange : Span<'T (requires 'T :> IComparable<'T>)> * 'T * 'T -> bool (requires 'T :> IComparable<'T>)
<Extension()>
Public Function ContainsAnyInRange(Of T As IComparable(Of T)) (span As Span(Of T), lowInclusive As T, highInclusive As T) As Boolean

Parametry typu

T

Parametry

span
Span<T>

Rozsah, který se má prohledávat.

lowInclusive
T

Dolní mez včetně rozsahu, pro který se má hledat.

highInclusive
T

Horní mez včetně oblasti, pro kterou se má hledat.

Návraty

true, pokud byla nalezena. Pokud se nenajde, vrátí false.

Platí pro