std::is_polymorphic (3) - Linux Manuals
std::is_polymorphic: std::is_polymorphic
NAME
std::is_polymorphic - std::is_polymorphic
Synopsis
Defined in header <type_traits>
template< class T > (since C++11)
struct is_polymorphic;
If T is a polymorphic_class (that is, a non-union class that declares or inherits at least one virtual function), provides the member constant value equal true. For any other type, value is false.
If T is a non-union class type, T shall be a complete type; otherwise, the behavior is undefined.
Template parameters
T - a type to check
Helper variable template
template< class T > (since C++17)
inline constexpr bool is_polymorphic_v = is_polymorphic<T>::value;
Inherited from std::integral_constant
Member constants
value true if T is a polymorphic class type , false otherwise
[static]
Member functions
operator bool (public member function)
operator() returns value
(C++14)
Member types
Type Definition
value_type bool
type std::integral_constant<bool, value>
Example
// Run this code
Output:
See also
is_class checks if a type is a non-union class type
(C++11)
is_abstract checks if a type is an abstract class type
(C++11)