◐ Shell
clean mode source ↗

std::swap(std::valarray) — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

template< class T > void swap( valarray<T> &lhs, valarray<T> &rhs );

Spécialisé l'algorithme std::swap pour std::valarray. Swaps le contenu de lhs et rhs. Appels lhs.swap(rhs) .

Original:

Specializes the std::swap algorithm for std::valarray. Swaps the contents of lhs and rhs. 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.

Paramètres

lhs, rhs -

valarrays dont le contenu à échanger

Original:

valarrays 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.

Retourne la valeur

(Aucun)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Complexité

Constant .

Original:

Constant.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Voir aussi

swaps avec une autre valarray

Original:

swaps with another valarray

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(fonction membre publique) [edit]