4#ifndef TETL_TYPE_TRAITS_IS_COMPOUND_HPP
5#define TETL_TYPE_TRAITS_IS_COMPOUND_HPP
7#include <etl/_type_traits/bool_constant.hpp>
8#include <etl/_type_traits/is_fundamental.hpp>
17struct is_compound : bool_constant<
not is_fundamental_v<T>> { };
Definition adjacent_find.hpp:9
constexpr bool is_compound_v
Definition is_compound.hpp:20