ElementAt(int)
Returns a reference to the element at a given index.
Read time 1 minuteLast updated 11 days ago
Definition
- Type: Method
- Namespace: Unity.Collections.LowLevel.Unsafe
- Assembly: UnityEngine.ManagedKernelModule
public ref T* ElementAt(int index)
Parameters
The index to access. Must be in the range of [0..Length).
Returns
Type | Description |
|---|---|
| <T>* | A reference to the element at the index. |