3#ifndef TETL_TYPE_TRAITS_IS_POINTER_HPP
4#define TETL_TYPE_TRAITS_IS_POINTER_HPP
27struct is_pointer : etl::detail::is_pointer<etl::remove_cv_t<T>> { };
Definition adjacent_find.hpp:8
constexpr bool is_pointer_v
Definition is_pointer.hpp:30
bool_constant< true > true_type
Definition bool_constant.hpp:13
bool_constant< false > false_type
Definition bool_constant.hpp:14
static constexpr bool value
Definition integral_constant.hpp:10
Checks whether T is a pointer to object or a pointer to function (but not a pointer to member/member ...
Definition is_pointer.hpp:27