template<class T, class U = T> constexpr T exchange(T& obj, U&& new_val);
T old_val = std::move(obj); obj = std::forward<U>(new_val); return old_val;