<sstream> swap
Scambia i valori tra due oggetti sstream.
template<class Elem, class Tr, class Alloc>
void swap(
basic_stringbuf<Elem, Tr, Alloc>& _Left,
basic_stringbuf<Elem, Tr, Alloc>& _Right
);
template<class Elem, class Tr, class Alloc>
void swap(
basic_istringstream<Elem, Tr, Alloc>& _Left,
basic_istringstream<Elem, Tr, Alloc>& _Right
);
template<class Elem, class Tr, class Alloc>
void swap(
basic_ostringstream<Elem, Tr, Alloc>& _Left,
basic_ostringstream<Elem, Tr, Alloc>& _Right
);
template<class Elem, class Tr, class Alloc>
void swap(
basic_stringstream<Elem, Tr, Alloc>& _Left,
basic_stringstream<Elem, Tr, Alloc>& _Right
);
Parametri
Parametro |
Descrizione |
---|---|
_Left |
Riferimento a un oggetto sstream. |
_Right |
Riferimento a un oggetto sstream. |
Note
La funzione di modello esegue _Left.swap(_Right).
Requisiti
intestazione: <sstream>
Spazio dei nomi: deviazione standard