foldable.hpp 929 B

123456789101112131415161718192021222324252627282930313233
  1. /*!
  2. @file
  3. Defines `boost::hana::Foldable`.
  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_FOLDABLE_HPP
  9. #define BOOST_HANA_CONCEPT_FOLDABLE_HPP
  10. #include <boost/hana/fwd/concept/foldable.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/fold_left.hpp>
  16. #include <boost/hana/unpack.hpp>
  17. BOOST_HANA_NAMESPACE_BEGIN
  18. template <typename T>
  19. struct Foldable
  20. : hana::integral_constant<bool,
  21. !is_default<fold_left_impl<typename tag_of<T>::type>>::value ||
  22. !is_default<unpack_impl<typename tag_of<T>::type>>::value
  23. >
  24. { };
  25. BOOST_HANA_NAMESPACE_END
  26. #endif // !BOOST_HANA_CONCEPT_FOLDABLE_HPP