3#ifndef TETL_TYPE_TRAITS_IS_MEMBER_FUNCTION_POINTER_HPP
4#define TETL_TYPE_TRAITS_IS_MEMBER_FUNCTION_POINTER_HPP
14#if defined(TETL_COMPILER_CLANG)
28template <
typename T,
typename U>
29struct is_member_function_pointer_helper<T U::*> : etl::is_function<T> { };
Definition adjacent_find.hpp:8
constexpr bool is_member_function_pointer_v
Definition is_member_function_pointer.hpp:40
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
Checks whether T is a non-static member function pointer. Provides the member constant value which is...
Definition is_member_function_pointer.hpp:37