constant.hpp 766 B

1234567891011121314151617181920212223242526272829
  1. /*!
  2. @file
  3. Defines `boost::hana::Constant`.
  4. @copyright Louis Dionne 2013-2016
  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_CONSTANT_HPP
  9. #define BOOST_HANA_CONCEPT_CONSTANT_HPP
  10. #include <boost/hana/fwd/concept/constant.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/value.hpp>
  15. BOOST_HANA_NAMESPACE_BEGIN
  16. template <typename C>
  17. struct Constant {
  18. using Tag = typename tag_of<C>::type;
  19. static constexpr bool value = !is_default<value_impl<Tag>>::value;
  20. };
  21. BOOST_HANA_NAMESPACE_END
  22. #endif // !BOOST_HANA_CONCEPT_CONSTANT_HPP