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