cpp/io/basic stringstream/swap2: differenze tra le versioni
Da cppreference.com.
< cpp | io | basic stringstream
P12 (Discussione | contributi) m (una revisione importata: Translate from the English version) |
m (Use {{lc}}. Update links. Various fixes.) |
||
(Una revisione intermedia di un utente non mostrata) | |||
Riga 1: | Riga 1: | ||
− | {{page | + | {{page|cpp/io/basic_stringstream/swap2|basic_stringstream}} |
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
Versione attuale delle 13:32, 2 lug 2013
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
template< class T > void swap( basic_stringstream<T> &lhs, basic_stringstream<T> &rhs ); |
||
Specializzato l'algoritmo std::swap per std::basic_stringstream. Scambi lo stato di
lhs
con quella di rhs
. Chiama efficacemente lhs.swap(rhs).Original:
Specializes the std::swap algorithm for std::basic_stringstream. Exchanges the state of
lhs
with that of rhs
. Effectively calls lhs.swap(rhs).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica] Parametri
lhs, rhs | - | flussi il cui stato di scambiare Original: streams whose state to swap The text has been machine-translated via |