comparable.hpp 783 B

1234567891011121314151617181920212223242526272829
  1. /*!
  2. @file
  3. Defines `boost::hana::Comparable`.
  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_COMPARABLE_HPP
  9. #define BOOST_HANA_CONCEPT_COMPARABLE_HPP
  10. #include <boost/hana/fwd/concept/comparable.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/equal.hpp>
  15. BOOST_HANA_NAMESPACE_BEGIN
  16. template <typename T>
  17. struct Comparable {
  18. using Tag = typename tag_of<T>::type;
  19. static constexpr bool value = !is_default<equal_impl<Tag, Tag>>::value;
  20. };
  21. BOOST_HANA_NAMESPACE_END
  22. #endif // !BOOST_HANA_CONCEPT_COMPARABLE_HPP