예제 #1
0
 /**
  * This will copy the contents of a Tuple, instead of sharing them.
  *
  * \see Shared
  */
 inline Data copy() const {
     if (value_type == Type_tuple) return Data(asTuple().copy());
     return *this;
 }
예제 #2
0
 inline void resetTuple  () {
     asTuple  ().~Tuple  ();
     value_type = Type_undefined;
 }
예제 #3
0
 TIV __getstate__() const { return asTuple(); }