|
|
void | init (uint count, Common::Functor1< uint, void > *changeCallback) |
| |
|
void | clear () |
| |
|
void | add (Object *) |
| |
|
void | remove (uint position) |
| |
|
void | removeByNameID (uint nameID) |
| |
|
void | removeByIconID (uint iconID) |
| |
|
bool | inInventoryByNameID (uint nameID) const |
| |
|
bool | inInventoryByIconID (uint iconID) const |
| |
|
Object * | selectedObject () const |
| |
|
void | setSelectedObject (Object *obj) |
| |
|
void | deselectObject () |
| |
| | Array (size_type count) |
| |
| | Array (size_type count, const Object * &value) |
| |
| | Array (const Array< Object * > &array) |
| |
| | Array (Array< Object * > &&old) |
| |
| | Array (std::initializer_list< Object * > list) |
| |
| | Array (const T2 *array, size_type n) |
| |
| void | emplace (const_iterator pos, TArgs &&... args) |
| |
| void | emplace_back (TArgs &&...args) |
| |
| void | push_back (const Object * &element) |
| |
| void | push_back (Object * &&element) |
| |
| void | push_back (const Array< Object * > &array) |
| |
| void | pop_back () |
| |
| const Object * * | data () const |
| |
| Object * * | data () |
| |
| Object * & | front () |
| |
| const Object * & | front () const |
| |
| Object * & | back () |
| |
| const Object * & | back () const |
| |
| void | insert_at (size_type idx, const Object * &element) |
| |
| void | insert_at (size_type idx, const Array< Object * > &array) |
| |
| void | insert (iterator pos, const Object * &element) |
| |
| Object * | remove_at (size_type idx) |
| |
| Object * & | operator[] (size_type idx) |
| |
| const Object * & | operator[] (size_type idx) const |
| |
| Array< Object * > & | operator= (const Array< Object * > &array) |
| |
| Array & | operator= (Array< Object * > &&old) |
| |
| size_type | size () const |
| |
| void | clear () |
| |
| iterator | erase (iterator pos) |
| |
| iterator | erase (iterator first, iterator last) |
| |
| bool | empty () const |
| |
| bool | operator== (const Array< Object * > &other) const |
| |
| bool | operator!= (const Array< Object * > &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 Object * value) |
| |
| void | assign (const_iterator first, const_iterator last) |
| |
|
void | swap (Array &arr) |
| |