  | IndexedQuicksortSortT(RecordIndexEntry, Byte, IRawComparerT) Method | 
            Sorts the specified indexed data.
            
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static void Sort<T>(
	RecordIndexEntry[] index,
	byte[] buffer,
	IRawComparer<T> comparer
)
Public Shared Sub Sort(Of T) ( 
	index As RecordIndexEntry(),
	buffer As Byte(),
	comparer As IRawComparer(Of T)
)
public:
generic<typename T>
static void Sort(
	array<RecordIndexEntry>^ index, 
	array<unsigned char>^ buffer, 
	IRawComparer<T>^ comparer
)
static member Sort : 
        index : RecordIndexEntry[] * 
        buffer : byte[] * 
        comparer : IRawComparer<'T> -> unit Parameters
- index  RecordIndexEntry
 - The index.
 - buffer  Byte
 - The buffer containing the data.
 - comparer  IRawComparerT
 - The IRawComparerT for the records in the buffer.
 
Type Parameters
- T
 - The type of the records in the buffer.
 
See Also