Interface INativeList<T>
Namespace: Unity.Collections
Syntax
public interface INativeList<T>
where T : struct
Type Parameters
Name | Description |
---|---|
T |
Properties
Capacity
Declaration
int Capacity { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Item[Int32]
Declaration
T this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | index |
Property Value
Type | Description |
---|---|
T |
Length
Declaration
int Length { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Methods
ElementAt(Int32)
Declaration
T ElementAt(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index |
Returns
Type | Description |
---|---|
T |