53 constexpr enable_if_t<is_movable<T>::value>
constexpr enable_if_t< is_movable< T >::value > swap(T &lhs, T &rhs) noexcept(is_nothrow_movable< T >::value)
Swaps the given values.
Definition: swap.hpp:54
constexpr void move(fmt< V > &&val) noexcept=delete
Used to prevent a move of bsl::fmt as it must always be a temporary r-value.
If the provided type is nothrow move assignable and constructible, provides the member constant value...
Definition: is_nothrow_movable.hpp:49