Array

Undocumented in source.

Members

Functions

add
void add(T item)
Undocumented in source. Be warned that the author may not have intended to support it.
add_all
void add_all(Array!T items)
Undocumented in source. Be warned that the author may not have intended to support it.
clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
create
void create(Allocator* allocator, size_t capacity)
Undocumented in source. Be warned that the author may not have intended to support it.
destroy
void destroy()
Undocumented in source. Be warned that the author may not have intended to support it.
empty
bool empty()
Undocumented in source. Be warned that the author may not have intended to support it.
ensureTotalCapacity
void ensureTotalCapacity(size_t new_capacity)
Undocumented in source. Be warned that the author may not have intended to support it.
expandToCapacity
void expandToCapacity()
Undocumented in source. Be warned that the author may not have intended to support it.
get
T get(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
get_slice
T[] get_slice()
Undocumented in source. Be warned that the author may not have intended to support it.
index_of
int index_of(T item)
Undocumented in source. Be warned that the author may not have intended to support it.
length
size_t length()
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ref T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(T*) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(size_t, T*) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
T opIndex(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndexAssign
void opIndexAssign(T value, size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
pop
T pop()
Undocumented in source. Be warned that the author may not have intended to support it.
remove
bool remove(T item)
Undocumented in source. Be warned that the author may not have intended to support it.
removeSwap
T removeSwap(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
remove_at
bool remove_at(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
remove_back
bool remove_back()
Undocumented in source. Be warned that the author may not have intended to support it.
resize
void resize(size_t newSize)
Undocumented in source. Be warned that the author may not have intended to support it.
set
void set(size_t index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

createWith
Array createWith(Allocator* allocator, size_t capacity)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

_items
T[] _items;
Undocumented in source.
allocator
Allocator* allocator;
Undocumented in source.
capacity
size_t capacity;
Undocumented in source.

Meta