|
typedef DeathEntry * | iterator |
|
typedef const DeathEntry * | const_iterator |
|
typedef DeathEntry | value_type |
|
typedef uint | size_type |
|
| Array (size_type count) |
|
| Array (size_type count, const DeathEntry &value) |
|
| Array (const Array< DeathEntry > &array) |
|
| Array (Array< DeathEntry > &&old) |
|
| Array (std::initializer_list< DeathEntry > list) |
|
| Array (const T2 *array, size_type n) |
|
void | emplace (const_iterator pos, TArgs &&... args) |
|
void | emplace_back (TArgs &&...args) |
|
void | push_back (const DeathEntry &element) |
|
void | push_back (DeathEntry &&element) |
|
void | push_back (const Array< DeathEntry > &array) |
|
void | pop_back () |
|
const DeathEntry * | data () const |
|
DeathEntry * | data () |
|
DeathEntry & | front () |
|
const DeathEntry & | front () const |
|
DeathEntry & | back () |
|
const DeathEntry & | back () const |
|
void | insert_at (size_type idx, const DeathEntry &element) |
|
void | insert_at (size_type idx, const Array< DeathEntry > &array) |
|
void | insert (iterator pos, const DeathEntry &element) |
|
DeathEntry | remove_at (size_type idx) |
|
DeathEntry & | operator[] (size_type idx) |
|
const DeathEntry & | operator[] (size_type idx) const |
|
Array< DeathEntry > & | operator= (const Array< DeathEntry > &array) |
|
Array & | operator= (Array< DeathEntry > &&old) |
|
size_type | size () const |
|
void | clear () |
|
iterator | erase (iterator pos) |
|
iterator | erase (iterator first, iterator last) |
|
bool | empty () const |
|
bool | operator== (const Array< DeathEntry > &other) const |
|
bool | operator!= (const Array< DeathEntry > &other) const |
|
iterator | begin () |
|
const_iterator | begin () const |
|
iterator | end () |
|
const_iterator | end () const |
|
void | reserve (size_type newCapacity) |
|
void | resize (size_type newSize) |
|
void | resize (size_type newSize, const DeathEntry value) |
|
void | assign (const_iterator first, const_iterator last) |
|
void | swap (Array &arr) |
|
void | allocCapacity (size_type capacity) |
|
void | freeStorage (DeathEntry *storage, const size_type elements) |
|
iterator | insert_aux (iterator pos, const_iterator first, const_iterator last) |
|
static size_type | roundUpCapacity (size_type capacity) |
|
size_type | _capacity |
|
size_type | _size |
|
DeathEntry * | _storage |
|