Class NativeSortExtension
Extension methods for sorting collections.
Namespace: Unity.Collections
Assembly: solution.dll
Syntax
public static class NativeSortExtension
Methods
Name | Description |
---|---|
Binary |
Finds a value in this sorted list by binary search. |
Binary |
Finds a value in this sorted array by binary search. |
Binary |
Finds a value in this sorted array by binary search. |
Binary |
Finds a value in this sorted list by binary search. |
Binary |
Finds a value in this sorted slice by binary search. |
Binary |
Finds a value in a sorted array by binary search. |
Binary |
Finds a value in this sorted list by binary search using a custom comparison. |
Binary |
Finds a value in this sorted array by binary search using a custom comparison. |
Binary |
Finds a value in this sorted array by binary search using a custom comparison. |
Binary |
Finds a value in this sorted list by binary search using a custom comparison. |
Binary |
Finds a value in this sorted slice by binary search using a custom comparison. |
Binary |
Finds a value in a sorted array by binary search using a custom comparison. |
Sort |
Returns a job which will sort this list in ascending order. |
Sort |
Returns a job which will sort this array in ascending order. |
Sort |
Returns a job which will sort this list in ascending order. |
Sort |
Returns a job which will sort this slice in ascending order. |
Sort |
Returns a job which will sort an array in ascending order. |
Sort |
Returns a job which will sort this list using a custom comparison. |
Sort |
Returns a job which will sort this array using a custom comparison. |
Sort |
Returns a job which will sort this list using a custom comparison. |
Sort |
Returns a job which will sort this slice using a custom comparison. |
Sort |
Returns a job which will sort an array using a custom comparison. |
Sort<T>(Unsafe |
Sorts this list in ascending order. |
Sort<T>(Native |
Sorts this array in ascending order. |
Sort<T>(Native |
Sorts this list in ascending order. |
Sort<T>(Native |
Sorts this slice in ascending order. |
Sort<T>(T*, int) | Sorts an array in ascending order. |
Sort<T, U>(Unsafe |
Sorts the list using a custom comparison. |
Sort<T, U>(Native |
Sorts this array using a custom comparison. |
Sort<T, U>(Native |
Sorts this list using a custom comparison. |
Sort<T, U>(Native |
Sorts this slice using a custom comparison. |
Sort<T, U>(T*, int, U) | Sorts an array using a custom comparison. |