In several places in this Clause the operation
DECAY_ยญCOPY(x) is used. All
such uses mean call the function decay_ยญcopy(x) and use the
result, where decay_ยญcopy is defined as follows:
template <class T> decay_t<T> decay_copy(T&& v)
{ return std::forward<T>(v); }