Beispiel #1
0
 format &
 operator %(T rhs)
 {
     m_args.push_back(any_out(rhs));
     return *this;
 }
Beispiel #2
0
 any_out& operator=( const T& value )
 {
   any_out( value ).swap( *this );
   return *this;
 }
Beispiel #3
0
 any_out & operator=(const T& r) {
   any_out(r).swap(*this);
   
   return *this;
 }