integral_constant.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*!
  2. @file
  3. Defines `boost::hana::IntegralConstant`.
  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_INTEGRAL_CONSTANT_HPP
  9. #define BOOST_HANA_CONCEPT_INTEGRAL_CONSTANT_HPP
  10. #include <boost/hana/fwd/concept/integral_constant.hpp>
  11. #include <boost/hana/config.hpp>
  12. #include <boost/hana/core/tag_of.hpp>
  13. BOOST_HANA_NAMESPACE_BEGIN
  14. namespace detail {
  15. template <typename C, typename Tag = typename tag_of<C>::type>
  16. struct integral_constant_dispatch {
  17. static constexpr bool value = hana::IntegralConstant<Tag>::value;
  18. };
  19. template <typename C>
  20. struct integral_constant_dispatch<C, C> {
  21. static constexpr bool value = false;
  22. };
  23. }
  24. //! @cond
  25. template <typename C>
  26. struct IntegralConstant
  27. : detail::integral_constant_dispatch<C>
  28. { };
  29. //! @endcond
  30. BOOST_HANA_NAMESPACE_END
  31. #endif // !BOOST_HANA_CONCEPT_INTEGRAL_CONSTANT_HPP