My Project
is_lvalue_reference.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_LVALUE_REFERENCE_HPP
29 #define BSL_IS_LVALUE_REFERENCE_HPP
30 
31 #include "true_type.hpp"
32 #include "false_type.hpp"
33 
34 namespace bsl
35 {
47  template<typename T>
48  class is_lvalue_reference final : public false_type
49  {};
50 
52 
53  template<typename T>
54  class is_lvalue_reference<T &> final : public true_type
55  {};
56 
58 }
59 
60 #endif
If the provided type is an lvalue reference type, provides the member constant value equal to true....
Definition: is_lvalue_reference.hpp:48
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45