MemoryExtensions.ContainsAnyExceptInRange Método

Definição

Sobrecargas

Name Description
ContainsAnyExceptInRange<T>(ReadOnlySpan<T>, T, T)

Procura qualquer valor fora do intervalo entre lowInclusive e highInclusive, inclusive.

ContainsAnyExceptInRange<T>(Span<T>, T, T)

Procura qualquer valor fora do intervalo entre lowInclusive e highInclusive, inclusive.

ContainsAnyExceptInRange<T>(ReadOnlySpan<T>, T, T)

Origem:
MemoryExtensions.cs
Origem:
MemoryExtensions.cs
Origem:
MemoryExtensions.cs
Origem:
MemoryExtensions.cs

Procura qualquer valor fora do intervalo entre lowInclusive e highInclusive, inclusive.

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

Parâmetros de Tipo Genérico

T

Parâmetros

span
ReadOnlySpan<T>

O tempo para procurar.

lowInclusive
T

O limite inferior, inclusivo, do intervalo excluído.

highInclusive
T

O limite superior, inclusivo, do intervalo excluído.

Devoluções

true se houver algum valor diferente daqueles dentro do intervalo especificado no intervalo. Se todos os valores do span estiverem dentro do intervalo especificado, retorna false.

Aplica-se a

ContainsAnyExceptInRange<T>(Span<T>, T, T)

Origem:
MemoryExtensions.cs
Origem:
MemoryExtensions.cs
Origem:
MemoryExtensions.cs
Origem:
MemoryExtensions.cs

Procura qualquer valor fora do intervalo entre lowInclusive e highInclusive, inclusive.

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

Parâmetros de Tipo Genérico

T

Parâmetros

span
Span<T>

O tempo para procurar.

lowInclusive
T

O limite inferior, inclusivo, do intervalo excluído.

highInclusive
T

O limite superior, inclusivo, do intervalo excluído.

Devoluções

true se houver algum valor diferente daqueles dentro do intervalo especificado no intervalo. Se todos os valores estiverem dentro do intervalo especificado, devolve false.

Atributos

Aplica-se a