Method ToArray
ToArray<T>(UnsafeParallelHashSet<T>)
Returns a new managed array with all the elements copied from a set.
Declaration
public static T[] ToArray<T>(this UnsafeParallelHashSet<T> set) where T : unmanaged, IEquatable<T>
Parameters
| Type | Name | Description |
|---|---|---|
| UnsafeParallelHashSet<T> | set | The set whose elements are copied to the array. |
Returns
| Type | Description |
|---|---|
| T[] | A new managed array with all the elements copied from a set. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of elements. |