4#ifndef TETL_TYPE_TRAITS_IS_TRIVIAL_HPP
5#define TETL_TYPE_TRAITS_IS_TRIVIAL_HPP
7#include <etl/_type_traits/bool_constant.hpp>
8#include <etl/_type_traits/is_trivially_copyable.hpp>
9#include <etl/_type_traits/is_trivially_default_constructible.hpp>
20struct is_trivial : bool_constant<is_trivially_copyable_v<T>
and is_trivially_default_constructible_v<T>> { };
Definition adjacent_find.hpp:9
constexpr bool is_trivial_v
Definition is_trivial.hpp:23
If T is TrivialType (that is, a scalar type, a trivially copyable class with a trivial default constr...
Definition is_trivial.hpp:20