OGLplus  (0.59.0) a C++ wrapper for rendering APIs

not_empty.hpp
Go to the documentation of this file.
1 
9 #ifndef EAGINE_VALID_IF_NOT_EMPTY_HPP
10 #define EAGINE_VALID_IF_NOT_EMPTY_HPP
11 
12 #include "decl.hpp"
13 
14 namespace eagine {
15 
18 template <typename T>
20 
22  constexpr auto operator()(const T& range) const noexcept {
23  return !range.empty();
24  }
25 
26  struct do_log {
27  template <typename X, typename = disable_if_same_t<X, do_log>>
28  constexpr do_log(X&&) noexcept {}
29 
30  template <typename Log>
31  void operator()(Log& log, const T&) const {
32  log << "Empty range, string or container is invalid";
33  }
34  };
35 };
36 
41 template <typename T>
43 
44 } // namespace eagine
45 
46 #endif // EAGINE_VALID_IF_NOT_EMPTY_HPP
constexpr auto operator()(const T &range) const noexcept
Indicates value validity, true if !range.empty().
Definition: not_empty.hpp:22
Common code is placed in this namespace.
Definition: eagine.hpp:21
Policy class for containers valid if their empty() member function return false.
Definition: not_empty.hpp:19
Primary template for conditionally valid values.
Definition: decl.hpp:49

Copyright © 2015-2021 Matúš Chochlík.
<chochlik -at -gmail.com>
Documentation generated on Tue Apr 13 2021 by Doxygen (version 1.8.17).