3#ifndef TETL_TYPE_TRAITS_IS_MEMBER_POINTER_HPP
4#define TETL_TYPE_TRAITS_IS_MEMBER_POINTER_HPP
13#if defined(TETL_COMPILER_CLANG)
25struct is_member_pointer_helper :
false_type { };
27template <
typename T,
typename U>
28struct is_member_pointer_helper<T U::*> :
true_type { };
Definition adjacent_find.hpp:8
constexpr bool is_member_pointer_v
Definition is_member_pointer.hpp:40
bool_constant< true > true_type
Definition bool_constant.hpp:13
integral_constant< bool, B > bool_constant
Definition bool_constant.hpp:11
bool_constant< false > false_type
Definition bool_constant.hpp:14
static constexpr bool value
Definition integral_constant.hpp:10
If T is pointer to non-static member object or a pointer to non-static member function,...
Definition is_member_pointer.hpp:37