Ark Server API (ASA) - Wiki
|
#include <SparseArray.h>
Public Attributes | ||
ElementType | ElementData | |
struct { | ||
int32 PrevFreeIndex | ||
int32 NextFreeIndex | ||
}; | ||
Allocated elements are overlapped with free element info in the element list.
Definition at line 46 of file SparseArray.h.
struct { ... } TSparseArrayElementOrFreeListLink< ElementType > |
ElementType TSparseArrayElementOrFreeListLink< ElementType >::ElementData |
If the element is allocated, its value is stored here.
Definition at line 49 of file SparseArray.h.
int32 TSparseArrayElementOrFreeListLink< ElementType >::NextFreeIndex |
If the element isn't allocated, this is a link to the next element in the array's free list.
Definition at line 57 of file SparseArray.h.
int32 TSparseArrayElementOrFreeListLink< ElementType >::PrevFreeIndex |
If the element isn't allocated, this is a link to the previous element in the array's free list.
Definition at line 54 of file SparseArray.h.