[#bsl-is_volatile-02] = xref:bsl.adoc[bsl]::is_volatile :relfileprefix: ../ :mrdocs: This `struct` template implements the `is_volatile` meta‐function defined in the C++11 standard [meta.unary.cat]to determine if the (template parameter) `t_TYPE` is `volatile`‐qualified. This `struct` derives from `bsl::true_type` if the `t_TYPE` is `volatile`‐qualified, and `bsl::false_type` otherwise. Note that this generic default template derives from `bsl::false_type`. A template specialization is provided (below) that derives from `bsl::true_type`. == Synopsis Declared in `<bslmf_isvolatile.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TYPE> struct is_volatile : xref:bsl/false_type.adoc[false_type] ---- == Base Classes [cols="1,4"] |=== | Name| Description | `xref:bsl/false_type.adoc[false_type]` | Metafunction representing the boolean constant `false`. |=== == Specializations [cols="1,4"] |=== | Name| Description | xref:bsl/is_volatile-08.adoc[`is_volatile<t_TYPE volatile>`] | This partial specialization of `is_volatile`, for when the (template parameter) `t_TYPE` is `volatile`‐qualified, derives from `bsl::true_type`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#