Define INVOKE<R>(f, t1, t2, ..., tN) as
static_cast<void>(INVOKE(f, t1, t2, ..., tN))
if R is cvvoid, otherwise
INVOKE(f, t1, t2, ..., tN) implicitly converted
to R.
Every call wrapper ([func.def]) shall be
MoveConstructible.
A forwarding call wrapper is a
call wrapper that can be called with an arbitrary argument list
and delivers the arguments to the wrapped callable object as references.
This forwarding step shall ensure that rvalue arguments are delivered as rvalue references
and lvalue arguments are delivered as lvalue references.
A simple call wrapper is a forwarding call wrapper that is
CopyConstructible and CopyAssignable and
whose copy constructor, move constructor, and assignment operator
do not throw exceptions.