[#BloombergLP-bslmf-InvokeResult_MemFuncPtrImpDispatch-0f-checkVolatile-0b] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslmf.adoc[bslmf]::xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f.adoc[InvokeResult_MemFuncPtrImpDispatch<bslmf::VoidType<decltype(((*InvokeResult_ImpUtils::myDeclval<t_ARG1TYPE>()).* InvokeResult_ImpUtils::myDeclval<t_FN>())( InvokeResult_ImpUtils::myDeclval<t_ARGTYPES>()...))>::type, false, false, t_FN, t_ARG1TYPE, t_ARGTYPES...>]::checkVolatile :relfileprefix: ../../../ :mrdocs: `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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TP> static xref:BloombergLP/bslmf/Tag-0b.adoc[bslmf::Tag<false>] xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-04.adoc[checkVolatile](t_TP&); ---- [.small]#xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-04.adoc[_» more..._]# Return `bslmf::Tag<true>()` if the argument is `volatile`‐qualified. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TP> static xref:BloombergLP/bslmf/Tag-0b.adoc[bslmf::Tag<true>] xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-0a.adoc[checkVolatile](t_TP volatile&); ---- [.small]#xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-0a.adoc[_» more..._]# Return `bslmf::Tag<false>()` for a `const`‐qualified argument. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TP> static xref:BloombergLP/bslmf/Tag-0b.adoc[bslmf::Tag<false>] xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-01.adoc[checkVolatile](t_TP const&); ---- [.small]#xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-01.adoc[_» more..._]# Return `bslmf::Tag<true>()` if the argument is `const volatile`‐qualified. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TP> static xref:BloombergLP/bslmf/Tag-0b.adoc[bslmf::Tag<true>] xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-05.adoc[checkVolatile](t_TP const volatile&); ---- [.small]#xref:BloombergLP/bslmf/InvokeResult_MemFuncPtrImpDispatch-0f/checkVolatile-05.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#