Class NativeSortExtension
Inheritance
System.Object
NativeSortExtension
Syntax
public static class NativeSortExtension
Methods
Sort<T>(T*, Int32)
Declaration
public static void Sort<T>(T*array, int length)
where T : struct, IComparable<T>
Parameters
Type |
Name |
Description |
T* |
array |
|
System.Int32 |
length |
|
Type Parameters
Sort<T>(NativeArray<T>)
Declaration
public static void Sort<T>(this NativeArray<T> array)
where T : struct, IComparable<T>
Parameters
Type |
Name |
Description |
NativeArray<T> |
array |
|
Type Parameters
Sort<T>(NativeSlice<T>)
Declaration
public static void Sort<T>(this NativeSlice<T> slice)
where T : struct, IComparable<T>
Parameters
Type |
Name |
Description |
NativeSlice<T> |
slice |
|
Type Parameters
Sort<T, U>(T*, Int32, U)
Declaration
public static void Sort<T, U>(T*array, int length, U comp)
where T : struct where U : IComparer<T>
Parameters
Type |
Name |
Description |
T* |
array |
|
System.Int32 |
length |
|
U |
comp |
|
Type Parameters
Sort<T, U>(NativeArray<T>, U)
Declaration
public static void Sort<T, U>(this NativeArray<T> array, U comp)
where T : struct where U : IComparer<T>
Parameters
Type |
Name |
Description |
NativeArray<T> |
array |
|
U |
comp |
|
Type Parameters
Sort<T, U>(NativeSlice<T>, U)
Declaration
public static void Sort<T, U>(this NativeSlice<T> slice, U comp)
where T : struct where U : IComparer<T>
Parameters
Type |
Name |
Description |
NativeSlice<T> |
slice |
|
U |
comp |
|
Type Parameters