MemoryExtensions.ContainsAnyInRange 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ContainsAnyInRange<T>(ReadOnlySpan<T>, T, T) |
|
ContainsAnyInRange<T>(Span<T>, T, T) |
|
ContainsAnyInRange<T>(ReadOnlySpan<T>, T, T)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
lowInclusive
및 highInclusive
사이의 범위에서 값을 검색합니다( 포함).
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
형식 매개 변수
- T
매개 변수
- span
- ReadOnlySpan<T>
검색할 범위입니다.
- lowInclusive
- T
검색할 범위의 하한(포함)입니다.
- highInclusive
- T
검색할 범위의 상한(포함)입니다.
반환
true
. 찾을 수 없으면 false
반환합니다.
적용 대상
ContainsAnyInRange<T>(Span<T>, T, T)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
lowInclusive
및 highInclusive
(포함) 사이의 범위에서 값을 검색하고 있는 경우 true
반환합니다. 찾을 수 없으면 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
형식 매개 변수
- T
매개 변수
- span
- Span<T>
검색할 범위입니다.
- lowInclusive
- T
검색할 범위의 하한(포함)입니다.
- highInclusive
- T
검색할 범위의 상한(포함)입니다.
반환
true
. 찾을 수 없으면 false
반환합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET