orderable.hpp 885 B

1234567891011121314151617181920212223242526272829303132
  1. /*!
  2. @file
  3. Defines `boost::hana::Orderable`.
  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_ORDERABLE_HPP
  9. #define BOOST_HANA_CONCEPT_ORDERABLE_HPP
  10. #include <boost/hana/fwd/concept/orderable.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/less.hpp>
  16. BOOST_HANA_NAMESPACE_BEGIN
  17. template <typename Ord>
  18. struct Orderable
  19. : hana::integral_constant<bool,
  20. !is_default<less_impl<typename tag_of<Ord>::type,
  21. typename tag_of<Ord>::type>>::value
  22. >
  23. { };
  24. BOOST_HANA_NAMESPACE_END
  25. #endif // !BOOST_HANA_CONCEPT_ORDERABLE_HPP