Go to the documentation of this file.
9 #ifndef EAGINE_VALID_IF_LESS_THAN_HPP
10 #define EAGINE_VALID_IF_LESS_THAN_HPP
18 template <
typename T, T Cmp>
27 template <
typename X,
typename = disable_if_same_t<X, do_log>>
28 constexpr do_log(X&&) noexcept {}
30 template <
typename Log>
32 log <<
"Value " << v <<
", "
33 <<
"greater then or equal to " << Cmp <<
" "
43 template <
typename T, T Cmp>
48 #endif // EAGINE_VALID_IF_LESS_THAN_HPP
Common code is placed in this namespace.
Definition: eagine.hpp:21
Primary template for conditionally valid values.
Definition: decl.hpp:49
constexpr auto operator()(T value) const noexcept
Indicates value validity, true if value < Cmp.
Definition: less_than.hpp:22
Policy class for values valid if less than Cmp.
Definition: less_than.hpp:19