4#ifndef TETL_TYPE_TRAITS_IS_POINTER_HPP
5#define TETL_TYPE_TRAITS_IS_POINTER_HPP
7#include <etl/_type_traits/bool_constant.hpp>
8#include <etl/_type_traits/remove_cv.hpp>
14struct is_pointer :
etl::false_type { };
17struct is_pointer<T*> :
etl::true_type { };
28struct is_pointer :
etl::detail::is_pointer<
etl::remove_cv_t<T>> { };
Definition adjacent_find.hpp:9
constexpr bool is_pointer_v
Definition is_pointer.hpp:31