|
|
| Vector (const std::string &value) throw (TypeCastException) |
| |
|
| Vector (const std::vector< std::string > &token) throw (TypeCastException) |
| |
|
| Vector (sella::util::MessagePack &mpack, uint32_t &offset) throw (TypeCastException) |
| |
|
| Vector (const std::vector< Variant > &value) throw () |
| |
|
| Vector (std::vector< Variant > &&value) throw () |
| |
|
| Vector (const Vector &other) throw () |
| |
|
| Vector (Vector &&other) throw () |
| |
|
bool | operator== (const Vector &other) const throw () |
| |
|
bool | operator!= (const Vector &other) const throw () |
| |
|
Vector & | operator= (const Vector &other) throw () |
| |
|
Vector & | operator= (Vector &&other) throw () |
| |
|
Vector & | operator+= (const Variant &other) throw () |
| |
|
Vector & | operator+= (Variant &&other) throw () |
| |
|
const Variant & | operator[] (size_t index) const throw (RangeException) |
| |
|
Variant & | operator[] (size_t index) throw () |
| |
|
iterator | begin () throw () |
| |
|
iterator | end () throw () |
| |
|
const_iterator | cbegin () const throw () |
| |
|
const_iterator | cend () const throw () |
| |
|
const std::vector< Variant > & | get () const throw (UnsupportedOperatorException) |
| |
|
std::vector< Variant > & | get () throw (UnsupportedOperatorException) |
| |
|
size_t | size () const throw () |
| |
|
bool | empty () const throw () |
| |
|
void | clear () throw () |
| |
|
bool | erase (const std::string &key, int type=0) throw () |
| |
|
bool | erase (const Variant &value) throw () |
| |
|
bool | erase (size_t index) throw () |
| |
|
virtual void | shrink_to_fit () throw () |
| |
|
virtual void | msgpack (sella::util::MessagePack &mpack, uint32_t &offset) const throw (TypeCastException) |
| |
|
virtual void | msgpackBufferSize (size_t &size) const throw () |
| |
|
virtual std::string | str (int type) const throw () |
| |
|
virtual int | getType (void) throw () |
| |
|
| Nullable (std::shared_ptr< void > &value) throw () |
| |
|
| Nullable (std::shared_ptr< void > &&value) throw () |
| |
|
| Nullable (const Nullable &other)=delete throw () |
| |
|
Nullable & | operator= (const Nullable &other)=delete throw () |
| |
|
bool | isNull () const throw () |
| |
Definition at line 30 of file Vector.h.