QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
std::experimental::detail_::swap_ns Namespace Reference

Functions

template<class T >
void adl_swap (T &t, T &u) noexcept(noexcept(swap(t, u)))
 

Function Documentation

◆ adl_swap()

template<class T >
void std::experimental::detail_::swap_ns::adl_swap ( T &  t,
T &  u 
)
noexcept
246 {
247 swap(t, u);
248 }
Definition optional.hpp:365
void swap(optional< T > &x, optional< T > &y) noexcept(noexcept(x.swap(y)))
Definition optional.hpp:1016