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