std::swap(std::tuple)
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| template< class... Types > void swap( tuple<Types...>& lhs, tuple<Types...>& rhs ); |
(C + + 11以来) | |
lhsとrhsのコンテンツを交換します。 lhs.swap(rhs)に相当.Original:
Swaps the contents of
lhs and rhs. Equivalent to 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.
目次 |
[編集] パラメータ
| lhs, rhs | - | その内容は交換するタプル
Original: tuples whose contents to swap The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
(なし)
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.