4#ifndef TETL_TYPE_TRAITS_NEGATION_HPP
5#define TETL_TYPE_TRAITS_NEGATION_HPP
7#include <etl/_type_traits/bool_constant.hpp>
13struct negation : bool_constant<
not static_cast<
bool>(B::value)> { };
Definition adjacent_find.hpp:9
constexpr bool negation_v
Definition negation.hpp:16
Forms the logical negation of the type trait B.
Definition negation.hpp:13