4#ifndef TETL_TYPE_TRAITS_IS_NULL_POINTER_HPP
5#define TETL_TYPE_TRAITS_IS_NULL_POINTER_HPP
7#include <etl/_cstddef/nullptr_t.hpp>
8#include <etl/_type_traits/bool_constant.hpp>
9#include <etl/_type_traits/remove_cv.hpp>
14struct is_null_pointer : is_same<nullptr_t, remove_cv_t<T>> { };
Definition adjacent_find.hpp:9
constexpr bool is_null_pointer_v
Definition is_null_pointer.hpp:17