blob: 6cbff8e21cd830a42076570467b59b4fb10350f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "asl/meta.hpp"
#define ASL_MOVE(expr_) (static_cast<::asl::un_ref_t<decltype(expr_)>&&>(expr_))
#define ASL_FWD(expr_) (static_cast<decltype(expr_)&&>(expr_))
namespace asl
{
template<typename T, typename U>
T exchange(T& obj, U&& new_value)
{
T old_value = ASL_MOVE(obj);
obj = ASL_FORWARD(new_value);
return old_value;
}
} // namespace asl
|