Class DynamicArrayExtensions
Extension class for DynamicArray
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
public static class DynamicArrayExtensions
Methods
QuickSort<T>(DynamicArray<T>)
Perform a quick sort on the DynamicArray
Declaration
public static void QuickSort<T>(this DynamicArray<T> array) where T : IComparable<T>, new()
Parameters
Type | Name | Description |
---|---|---|
DynamicArray<T> | array | Array on which to perform the quick sort. |
Type Parameters
Name | Description |
---|---|
T | Type of the array. |