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&);
Return bslmf::Tag<true>() if the argument is volatile‐qualified.
template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP volatile&);
Return bslmf::Tag<false>() for a const‐qualified argument.
template<class t_TP>
static
bslmf::Tag<false>
checkVolatile(t_TP const&);
Return bslmf::Tag<true>() if the argument is const volatile‐qualified.
template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP const volatile&);
Created with MrDocs