4#ifndef TETL_TYPE_TRAITS_IS_FLOATING_POINT_HPP
5#define TETL_TYPE_TRAITS_IS_FLOATING_POINT_HPP
7#include <etl/_mpl/contains.hpp>
8#include <etl/_type_traits/bool_constant.hpp>
9#include <etl/_type_traits/remove_cv.hpp>
21struct is_floating_point : bool_constant<
mpl::contains_v<remove_cv_t<T>,
mpl::
list<
float,
double,
long double>>> { };
Definition adjacent_find.hpp:9
constexpr bool is_floating_point_v
Definition is_floating_point.hpp:24