3#ifndef TETL_TYPE_TRAITS_IS_UNDERLYING_TYPE_HPP
4#define TETL_TYPE_TRAITS_IS_UNDERLYING_TYPE_HPP
14struct underlying_type { };
18struct underlying_type<T> {
19 using type = __underlying_type(T);
typename underlying_type< T >::type underlying_type_t
Definition underlying_type.hpp:31
Definition adjacent_find.hpp:8
constexpr bool is_enum_v
Definition is_enum.hpp:16
The underlying type of an enum.
Definition underlying_type.hpp:27