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