MySQL 5.6.14 Source Code Document
|
Public Member Functions | |
Vector (int sz=10) | |
T & | operator[] (unsigned i) |
const T & | operator[] (unsigned i) const |
unsigned | size () const |
int | push_back (const T &) |
void | push (const T &, unsigned pos) |
T & | set (T &, unsigned pos, T &fill_obj) |
T & | back () |
void | erase (unsigned index) |
void | clear () |
int | fill (unsigned new_size, T &obj) |
Vector< T > & | operator= (const Vector< T > &) |
Vector (const Vector &) | |
bool | equal (const Vector< T > &obj) const |
int | assign (const T *, unsigned cnt) |
int | assign (const Vector< T > &obj) |
T * | getBase () |
const T * | getBase () const |
Definition at line 25 of file Vector.hpp.
Does deep copy.
Definition at line 83 of file Vector.hpp.
Shallow equal (i.e does memcmp)
Definition at line 233 of file Vector.hpp.