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