integral_constant.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*!
  2. @file
  3. Defines `boost::hana::IntegralConstant`.
  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_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. #include <boost/hana/detail/integral_constant.hpp>
  14. BOOST_HANA_NAMESPACE_BEGIN
  15. namespace detail {
  16. template <typename C, typename Tag = typename tag_of<C>::type>
  17. struct integral_constant_dispatch
  18. : hana::integral_constant<bool,
  19. hana::IntegralConstant<Tag>::value
  20. >
  21. { };
  22. template <typename C>
  23. struct integral_constant_dispatch<C, C>
  24. : hana::integral_constant<bool, false>
  25. { };
  26. }
  27. //! @cond
  28. template <typename C>
  29. struct IntegralConstant
  30. : detail::integral_constant_dispatch<C>
  31. { };
  32. //! @endcond
  33. BOOST_HANA_NAMESPACE_END
  34. #endif // !BOOST_HANA_CONCEPT_INTEGRAL_CONSTANT_HPP