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