MemoryExtensions.SequenceCompareTo 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
SequenceCompareTo<T>(ReadOnlySpan<T>, ReadOnlySpan<T>) |
IComparable{T}을 사용하여 해당 요소를 비교하여 두 읽기 전용 시퀀스의 상대 순서를 결정합니다. CompareTo(T). |
SequenceCompareTo<T>(Span<T>, ReadOnlySpan<T>) |
IComparable{T}을 사용하여 요소를 비교하여 범위 및 읽기 전용 범위의 상대 순서를 결정합니다. CompareTo(T). |
SequenceCompareTo<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
IComparable{T}을 사용하여 해당 요소를 비교하여 두 읽기 전용 시퀀스의 상대 순서를 결정합니다. CompareTo(T).
public:
generic <typename T>
where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
static int SequenceCompareTo(ReadOnlySpan<T> span, ReadOnlySpan<T> other);
public static int SequenceCompareTo<T> (this ReadOnlySpan<T> span, ReadOnlySpan<T> other) where T : IComparable<T>;
static member SequenceCompareTo : ReadOnlySpan<'T (requires 'T :> IComparable<'T>)> * ReadOnlySpan<'T (requires 'T :> IComparable<'T>)> -> int (requires 'T :> IComparable<'T>)
<Extension()>
Public Function SequenceCompareTo(Of T As IComparable(Of T)) (span As ReadOnlySpan(Of T), other As ReadOnlySpan(Of T)) As Integer
형식 매개 변수
- T
시퀀스의 요소 형식입니다.
매개 변수
- span
- ReadOnlySpan<T>
비교할 첫 번째 시퀀스입니다.
- other
- ReadOnlySpan<T>
비교할 두 번째 시퀀스입니다.
반환
span
및 other
상대 순서를 나타내는 부호 있는 정수입니다.
- 0보다 작으면 span
앞에 other
.
- 0이면 span
other
같습니다.
- 0보다 크면 span
other
따릅니다.
적용 대상
SequenceCompareTo<T>(Span<T>, ReadOnlySpan<T>)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
IComparable{T}을 사용하여 요소를 비교하여 범위 및 읽기 전용 범위의 상대 순서를 결정합니다. CompareTo(T).
public:
generic <typename T>
where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
static int SequenceCompareTo(Span<T> span, ReadOnlySpan<T> other);
public static int SequenceCompareTo<T> (this Span<T> span, ReadOnlySpan<T> other) where T : IComparable<T>;
static member SequenceCompareTo : Span<'T (requires 'T :> IComparable<'T>)> * ReadOnlySpan<'T (requires 'T :> IComparable<'T>)> -> int (requires 'T :> IComparable<'T>)
<Extension()>
Public Function SequenceCompareTo(Of T As IComparable(Of T)) (span As Span(Of T), other As ReadOnlySpan(Of T)) As Integer
형식 매개 변수
- T
범위에 있는 요소의 형식입니다.
매개 변수
- span
- Span<T>
비교할 범위입니다.
- other
- ReadOnlySpan<T>
비교할 읽기 전용 범위입니다.
반환
span
및 other
상대 순서를 나타내는 부호 있는 정수입니다.
- 0보다 작으면 span
앞에 other
.
- 0이면 span
other
같습니다.
- 0보다 크면 span
other
따릅니다.
적용 대상
.NET