|
typedef ActionCommand * | iterator |
|
typedef const ActionCommand * | const_iterator |
|
typedef ActionCommand | value_type |
|
typedef uint | size_type |
|
| Array (size_type count) |
|
| Array (size_type count, const ActionCommand &value) |
|
| Array (const Array< ActionCommand > &array) |
|
| Array (Array< ActionCommand > &&old) |
|
| Array (std::initializer_list< ActionCommand > list) |
|
| Array (const T2 *array, size_type n) |
|
void | emplace (const_iterator pos, TArgs &&... args) |
|
void | emplace_back (TArgs &&...args) |
|
void | push_back (const ActionCommand &element) |
|
void | push_back (ActionCommand &&element) |
|
void | push_back (const Array< ActionCommand > &array) |
|
void | pop_back () |
|
const ActionCommand * | data () const |
|
ActionCommand * | data () |
|
ActionCommand & | front () |
|
const ActionCommand & | front () const |
|
ActionCommand & | back () |
|
const ActionCommand & | back () const |
|
void | insert_at (size_type idx, const ActionCommand &element) |
|
void | insert_at (size_type idx, const Array< ActionCommand > &array) |
|
void | insert (iterator pos, const ActionCommand &element) |
|
ActionCommand | remove_at (size_type idx) |
|
ActionCommand & | operator[] (size_type idx) |
|
const ActionCommand & | operator[] (size_type idx) const |
|
Array< ActionCommand > & | operator= (const Array< ActionCommand > &array) |
|
Array & | operator= (Array< ActionCommand > &&old) |
|
size_type | size () const |
|
void | clear () |
|
iterator | erase (iterator pos) |
|
iterator | erase (iterator first, iterator last) |
|
bool | empty () const |
|
bool | operator== (const Array< ActionCommand > &other) const |
|
bool | operator!= (const Array< ActionCommand > &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 ActionCommand value) |
|
void | assign (const_iterator first, const_iterator last) |
|
void | swap (Array &arr) |
|
void | allocCapacity (size_type capacity) |
|
void | freeStorage (ActionCommand *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 |
|
ActionCommand * | _storage |
|