|
typedef T * | iterator |
|
typedef T const * | const_iterator |
|
typedef TupleBase< typename C::value_t, N > | tuplebase_t |
|
typedef typename C::value_t | value_type |
|
typedef typename C::value_t * | iterator |
|
typedef typename C::value_t const * | const_iterator |
|
|
virtual const_iterator | begin () const |
|
virtual const_iterator | end () const |
|
virtual iterator | begin () |
|
virtual iterator | end () |
|
const typename C::value_t & | at (size_t i) const |
| Return const reference to element i. More...
|
|
typename C::value_t & | at (size_t i) |
| Return reference to element i. More...
|
|
const typename C::value_t & | operator[] (size_t i) const |
|
typename C::value_t & | operator[] (size_t i) |
|
bool | operator== (const tuplebase_t &t) const |
| Equality operator.
|
|
bool | operator!= (const tuplebase_t &t) const |
| Inequality operator.
|
|
T & | toSequence (T &sequence) const |
| Copy elements to a Sequence, like stl::list, stl::set or stl::vector.
|
|
void | set (const tuplebase_t &t) |
|
void | set (const TupleBase< T2, N2 > &t) |
| Assign tuple of different type and/or size.
|
|
void | set (const typename C::value_t &arg) |
|
void | set (const typename C::value_t &arg, const SS &... rest) |
| Set element(s).
|
|
void | set (std::initializer_list< T > l) |
|
tuplebase_t & | assignSequence (T &sequence, bool LENIENT=false) |
| Proposed for tuples only; derived classes should not shadow this. More...
|
|
void | fill (typename C::value_t i) |
| Set all the elements to i.
|
|
void | clear () |
|
virtual std::ostream & | toStream (std::ostream &ostr, char separator=',') const |
|
std::string | toStr (char separator=',') const |
|
virtual void | updateTuple () |
|
|
const size_t | elementCount |
|
|
static const size_t | baseTypeSize = sizeof(C) |
|
static const size_t | storageTypeSize |
|
|
static size_t | size () |
| Return the number of elements. More...
|
|
void | setIndexed (size_t i) |
| Argument stack endpoint function; final step of variadic argument set(arg, ...) .
|
|
void | setIndexed (size_t i, T2 arg, const TT &... rest) |
| Worker called by set(T2 arg, T2 arg2, ...)
|
|
The documentation for this class was generated from the following file: