- append
void append(T value)
append single item by ref
- append
void append(T value)
append single item by value
- append
T* append(T value, int count)
appends same value several times, return pointer to appended items
- append
T* append(T value, int count)
appends same value several times, return pointer to appended items
- appendNoCheck
void appendNoCheck(T value)
append single item w/o check
- appendNoCheck
void appendNoCheck(T value)
append single item w/o check
- clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
- get
T get(int index)
Undocumented in source. Be warned that the author may not have intended to support it.
- opIndex
T opIndex(int index)
Undocumented in source. Be warned that the author may not have intended to support it.
- ptr
T* ptr(int index)
Undocumented in source. Be warned that the author may not have intended to support it.
- reserve
void reserve(int sz)
ensure capacity is enough to fit sz items
- set
void set(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.
- swap
void swap(Array v)
Undocumented in source. Be warned that the author may not have intended to support it.