MemoryExtensions.ContainsAnyExceptInRange メソッド

定義

オーバーロード

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

highInclusiveの範囲lowInclusiveを含む範囲外の値を検索します。

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

highInclusiveの範囲lowInclusiveを含む範囲外の値を検索します。

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

ソース:
MemoryExtensions.cs
ソース:
MemoryExtensions.cs

highInclusiveの範囲lowInclusiveを含む範囲外の値を検索します。

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

型パラメーター

T

パラメーター

span
ReadOnlySpan<T>

検索するスパン。

lowInclusive
T

除外された範囲の下限 (包括)。

highInclusive
T

除外された範囲の上限 (包括)。

戻り値

true 指定した範囲の値以外の値がスパンに存在する場合は 。 すべての値が指定した範囲内にある場合、 は を返します false

適用対象

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

ソース:
MemoryExtensions.cs
ソース:
MemoryExtensions.cs

highInclusiveの範囲lowInclusiveを含む範囲外の値を検索します。

public:
generic <typename T>
 where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
 static bool ContainsAnyExceptInRange(Span<T> span, T lowInclusive, T highInclusive);
public static bool ContainsAnyExceptInRange<T> (this Span<T> span, T lowInclusive, T highInclusive) where 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

型パラメーター

T

パラメーター

span
Span<T>

検索するスパン。

lowInclusive
T

除外された範囲の下限 (包括)。

highInclusive
T

除外された範囲の上限 (包括)。

戻り値

true 指定した範囲の値以外の値がスパンに存在する場合は 。 すべての値が指定した範囲内にある場合、 は を返します false

適用対象