◐ Shell
clean mode source ↗

std::swap(std::basic_string) - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

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

Especializa o algoritmo std::swap para std::basic_string. Trocar o conteúdo de lhs e rhs. Chamadas lhs.swap(rhs).

Original:

Specializes the std::swap algorithm for std::basic_string. 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.

Parâmetros

lhs, rhs -

cordas cujo conteúdo para trocar

Original:

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

Valor de retorno

(Nenhum)

Original:

(none)

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

Complexidade

Constante.

Original:

Constant.

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

Veja também

Trocar o conteúdo

Original:

swaps the contents

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


(função pública membro) [edit]