5 #ifndef VCCC_FUNCTIONAL_EQUAL_TO_HPP
6 #define VCCC_FUNCTIONAL_EQUAL_TO_HPP
25 noexcept(noexcept(
bool(std::forward<T>(t) == std::forward<U>(u))))
27 return std::forward<T>(t) == std::forward<U>(u);
Definition: directory.h:12
constexpr VCCC_INLINE_OR_STATIC detail::element_niebloid< 1 > value
Definition: key_value.hpp:35
Definition: equal_to.hpp:20
std::true_type is_transparent
Definition: equal_to.hpp:21
constexpr bool operator()(T &&t, U &&u) const noexcept(noexcept(bool(std::forward< T >(t)==std::forward< U >(u))))
Definition: equal_to.hpp:24