Object
ObjectArray
ObjectArray | A constructor that takes no parameter. |
ObjectArray | A constructor that lets you control the allocation jump size. |
ObjectArray | A constructor that lets you create a array in a predefined size and each slot in the array is filled with a default object. |
Append | Use this method to append a object to the array . This variation of the method takes a passOwnership parameter. |
Append | Use this method to append a object to the array. |
Count | Use this function to get the element count from the array. |
GetAt | Use this function to read a item from the array. |
Insert | Use this method to insert a object to the array. |
PeekAt | Use this function to read a item from the array without having to release the returned item. |
Release (Inherited) | Decreases reference count by one and deletes the object if the reference count reached zero. |
Remove | Use this method to remove a objects from the array. |
Resize | Use this method to resize the array. |
Retain (Inherited) | Increases the reference count by one. |
Swap | Use this method to swap two objects in the array. |