4#ifndef TETL_TYPE_TRAITS_HAS_UNIQUE_OBJECT_REPRESENTATION_HPP
5#define TETL_TYPE_TRAITS_HAS_UNIQUE_OBJECT_REPRESENTATION_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_type_traits/bool_constant.hpp>
10#include <etl/_type_traits/remove_all_extents.hpp>
11#include <etl/_type_traits/remove_cv.hpp>
32 : bool_constant<
__has_unique_object_representations(remove_cv_t<remove_all_extents_t<T>>)> { };
Definition adjacent_find.hpp:9
constexpr bool has_unique_object_representations_v
Definition has_unique_object_representations.hpp:35
If T is TriviallyCopyable and if any two objects of type T with the same value have the same object r...
Definition has_unique_object_representations.hpp:32