logical.hpp 1017 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*!
  2. @file
  3. Defines `boost::hana::Logical`.
  4. @copyright Louis Dionne 2013-2017
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_CONCEPT_LOGICAL_HPP
  9. #define BOOST_HANA_CONCEPT_LOGICAL_HPP
  10. #include <boost/hana/fwd/concept/logical.hpp>
  11. #include <boost/hana/config.hpp>
  12. #include <boost/hana/core/default.hpp>
  13. #include <boost/hana/core/tag_of.hpp>
  14. #include <boost/hana/detail/integral_constant.hpp>
  15. #include <boost/hana/eval_if.hpp>
  16. #include <boost/hana/not.hpp>
  17. #include <boost/hana/while.hpp>
  18. BOOST_HANA_NAMESPACE_BEGIN
  19. template <typename L>
  20. struct Logical
  21. : hana::integral_constant<bool,
  22. !is_default<eval_if_impl<typename tag_of<L>::type>>::value &&
  23. !is_default<not_impl<typename tag_of<L>::type>>::value &&
  24. !is_default<while_impl<typename tag_of<L>::type>>::value
  25. >
  26. { };
  27. BOOST_HANA_NAMESPACE_END
  28. #endif // !BOOST_HANA_CONCEPT_LOGICAL_HPP