std::swap(std::basic_stringstream)
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> template< class T > void swap( basic_stringstream<T> &lhs, basic_stringstream<T> &rhs ); |
||
Spezialisiert die std::swap Algorithmus für
std::basic_stringstream. Exchanges den Zustand der lhs mit der rhs. Effektiv nennt 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.
Parameter
| lhs, rhs | - | Bäche, deren Zustand zu tauschen
Original: streams whose state to swap The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
(None)
Original:
(none)
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.
Ausnahmen
(None)
Original:
(none)
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.
Beispiel
| This section is incomplete Reason: no example |
