GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
* Sign Up! *

Support
Customer Portal
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::experimental::swap(std::experimental::propagate_const)(3) C++ Standard Libary std::experimental::swap(std::experimental::propagate_const)(3)

std::experimental::swap(std::experimental::propagate_const) - std::experimental::swap(std::experimental::propagate_const)


template< class T >


constexpr void swap( std::experimental::propagate_const<T>& (library fundamentals
lhs, TS v2)


std::experimental::propagate_const<T>&
rhs ) noexcept(/* see below */);


Specializes the swap algorithm for std::experimental::propagate_const. Swaps the
pointers of lhs and rhs. Equivalent to lhs.swap(rhs).


This overload participates in overload resolution only (library fundamentals TS v3)
if std::is_swappable_v<T> is true.


lhs, rhs - propagate_consts whose contents to swap


(none)


noexcept specification:
noexcept(noexcept(lhs.swap(rhs)))


Constant.


swap swaps the values of two objects
(function template)
swap swaps the wrapped pointer
(public member function)


* conditionally noexcept

2024.06.10 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.