checkVolatile overloads
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);
» more...
Return bslmf::Tag<true>() if the argument is volatile-qualified.
template<class t_TP>
static
bslmf::Tag<true>
checkVolatile(t_TP volatile& arg);
» more...
Return bslmf::Tag<false>() for a const-qualified argument.
template<class t_TP>
static
bslmf::Tag<false>
checkVolatile(t_TP const& arg);
» 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& arg);
» more...
| Name | Description |
|---|---|
| arg | expression whose volatile qualification is being tested |