Namespaces
Variants

std::experimental::ranges::tagged<Base,Tags...>:: swap

From cppreference.net
constexpr void swap ( tagged & rhs ) noexcept ( /* ver más abajo */ )
requires Swappable < Base > ;

Intercambie los contenidos de * this y rhs , como si fuera mediante ranges:: swap ( static_cast < Base & > ( * this ) , static_cast < Base & > ( rhs ) ) ; .

Excepciones

noexcept especificación:
noexcept ( noexcept ( ranges:: swap ( std:: declval < Base & > ( ) , std:: declval < Base & > ( ) ) ) )

Véase también

especializa swap para objetos tagged
(función)