Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IArraySortHelper.cs
Go to the documentation of this file.
1
namespace
System.Collections.Generic
;
2
3
internal
interface
IArraySortHelper<TKey>
4
{
5
void
Sort
(
Span<TKey>
keys
,
IComparer<TKey>
comparer
);
6
7
int
BinarySearch
(TKey[]
keys
,
int
index
,
int
length
, TKey
value
,
IComparer<TKey>
comparer
);
8
}
9
internal
interface
IArraySortHelper
<TKey, TValue>
10
{
11
void
Sort
(
Span<TKey>
keys
,
Span<TValue>
values
,
IComparer<TKey>
comparer
);
12
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Collections.Generic.IArraySortHelper.Sort
void Sort(Span< TKey > keys, IComparer< TKey > comparer)
System.Collections.Generic.IArraySortHelper.Sort
void Sort(Span< TKey > keys, Span< TValue > values, IComparer< TKey > comparer)
System.Collections.Generic.IArraySortHelper.BinarySearch
int BinarySearch(TKey[] keys, int index, int length, TKey value, IComparer< TKey > comparer)
System.Collections.Generic.IArraySortHelper
Definition
IArraySortHelper.cs:10
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.ExceptionArgument.keys
@ keys
System.ExceptionArgument.value
@ value
System.ExceptionArgument.length
@ length
System.ExceptionArgument.index
@ index
System.ExceptionArgument.comparer
@ comparer
System.ExceptionArgument.values
@ values
source
System.Private.CoreLib
System.Collections.Generic
IArraySortHelper.cs
Generated by
1.10.0