My Project
is_compound.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_COMPOUND_HPP
29 #define BSL_IS_COMPOUND_HPP
30 
31 #include "bool_constant.hpp"
32 #include "is_fundamental.hpp"
33 
34 namespace bsl
35 {
47  template<typename T>
48  class is_compound final : // --
49  public bool_constant<!is_fundamental<T>::value>
50  {};
51 }
52 
53 #endif
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45
If the provided type is a compound type, provides the member constant value equal to true....
Definition: is_compound.hpp:48