4#ifndef TETL_FUNCTIONAL_IS_TRANSPARENT_HPP
5#define TETL_FUNCTIONAL_IS_TRANSPARENT_HPP
7#include <etl/_type_traits/bool_constant.hpp>
8#include <etl/_type_traits/is_same.hpp>
9#include <etl/_type_traits/void_t.hpp>
11namespace etl::detail {
13template <
typename T,
typename =
void>
14inline constexpr bool is_transparent_v =
false;
17inline constexpr bool is_transparent_v<T, void_t<
typename T::is_transparent>> =
true;
20struct is_transparent : bool_constant<is_transparent_v<T>> { };
Definition adjacent_find.hpp:9