[#BloombergLP-bslmf-IsPolymorphic] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslmf.adoc[bslmf]::IsPolymorphic :relfileprefix: ../../ :mrdocs: This `struct` template implements a meta‐function to determine if the (template parameter) `t_TYPE` is a (possibly cv‐qualified) polymorphic type. This `struct` derives from `bsl::true_type` if the `t_TYPE` is a polymorphic type, and `bsl::false_type` otherwise. == Synopsis Declared in `<bslmf_ispolymorphic.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TYPE> struct IsPolymorphic : bsl::is_polymorphic<t_TYPE>::type ---- == Description Note that although this `struct` is functionally equivalent to `bsl::is_polymorphic`, the use of `bsl::is_polymorphic` should be preferred. == Base Classes [cols="1,4"] |=== | Name| Description | `bsl::is_polymorphic<t_TYPE>::type` | |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#