Public Member Functions | |
void | saveLoadWithSerializer (Common::Serializer &s) |
Public Member Functions inherited from Common::Array< int16 > | |
Array (size_type count) | |
Array (size_type count, const int16 &value) | |
Array (const Array< int16 > &array) | |
Array (Array< int16 > &&old) | |
Array (std::initializer_list< int16 > list) | |
Array (const T2 *array, size_type n) | |
void | emplace (const_iterator pos, TArgs &&... args) |
void | emplace_back (TArgs &&...args) |
void | push_back (const int16 &element) |
void | push_back (int16 &&element) |
void | push_back (const Array< int16 > &array) |
void | pop_back () |
const int16 * | data () const |
int16 * | data () |
int16 & | front () |
const int16 & | front () const |
int16 & | back () |
const int16 & | back () const |
void | insert_at (size_type idx, const int16 &element) |
void | insert_at (size_type idx, const Array< int16 > &array) |
void | insert (iterator pos, const int16 &element) |
int16 | remove_at (size_type idx) |
int16 & | operator[] (size_type idx) |
const int16 & | operator[] (size_type idx) const |
Array< int16 > & | operator= (const Array< int16 > &array) |
Array & | operator= (Array< int16 > &&old) |
size_type | size () const |
void | clear () |
iterator | erase (iterator pos) |
iterator | erase (iterator first, iterator last) |
bool | empty () const |
bool | operator== (const Array< int16 > &other) const |
bool | operator!= (const Array< int16 > &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 int16 value) |
void | assign (const_iterator first, const_iterator last) |
void | swap (Array &arr) |
Additional Inherited Members | |
Public Types inherited from Common::Array< int16 > | |
typedef int16 * | iterator |
typedef const int16 * | const_iterator |
typedef int16 | value_type |
typedef uint | size_type |
Protected Member Functions inherited from Common::Array< int16 > | |
void | allocCapacity (size_type capacity) |
void | freeStorage (int16 *storage, const size_type elements) |
iterator | insert_aux (iterator pos, const_iterator first, const_iterator last) |
Static Protected Member Functions inherited from Common::Array< int16 > | |
static size_type | roundUpCapacity (size_type capacity) |
Protected Attributes inherited from Common::Array< int16 > | |
size_type | _capacity |
size_type | _size |
int16 * | _storage |