checkVolatile overloads
Synopses
Declared in <bslmf_invokeresult.h>
Tag whether the argument is volatile‐qualified (declared only).
template<class t_TP>
static
bslmf::Tag<false>
checkVolatile(t_TP& arg);
Return bslmf::Tag<true>() if the argument is volatile‐qualified.
template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP volatile& arg);
Return bslmf::Tag<false>() for a const‐qualified argument.
template<class t_TP>
static
bslmf::Tag<false>
checkVolatile(t_TP const& arg);
Return bslmf::Tag<true>() if the argument is const volatile‐qualified.
template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP const volatile& arg);
Parameters
Name |
Description |
arg |
expression whose volatile qualification is being tested |
Created with MrDocs