BloombergLP::bslmf::InvokeResult_FuncPtrImp<bslmf::VoidType<decltype(InvokeResult_ImpUtils::myDeclval<t_FN>()( InvokeResult_ImpUtils::myDeclval<t_ARGTYPES>()...))>::type, t_FN, t_ARGTYPES...>::checkVolatile

checkVolatile overloads

Synopses

Declared in <bslmf_invokeresult.h>

(Declared but not defined) Return bslmf::Tag<true>() if the argument is volatile-qualified and bslmf::Tag<false>() otherwise. Note that if t_TP is both const- and volatile-qualified, it will not match volatile t_TP&, hence the need for the const overloads.

template<class t_TP>
static
bslmf::Tag<false>
checkVolatile(t_TP&);
» more...

Return bslmf::Tag<true>() if the argument is volatile-qualified.

template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP volatile&);
» more...

Return bslmf::Tag<false>() for a const-qualified argument.

template<class t_TP>
static
bslmf::Tag<false>
checkVolatile(t_TP const&);
» more...

Return bslmf::Tag<true>() if the argument is const volatile-qualified.

template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP const volatile&);
» more...