applicative.hpp 929 B

123456789101112131415161718192021222324252627282930313233
  1. /*!
  2. @file
  3. Defines `boost::hana::Applicative`.
  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_APPLICATIVE_HPP
  9. #define BOOST_HANA_CONCEPT_APPLICATIVE_HPP
  10. #include <boost/hana/fwd/concept/applicative.hpp>
  11. #include <boost/hana/ap.hpp>
  12. #include <boost/hana/config.hpp>
  13. #include <boost/hana/core/default.hpp>
  14. #include <boost/hana/core/tag_of.hpp>
  15. #include <boost/hana/detail/integral_constant.hpp>
  16. #include <boost/hana/lift.hpp>
  17. BOOST_HANA_NAMESPACE_BEGIN
  18. template <typename A>
  19. struct Applicative
  20. : hana::integral_constant<bool,
  21. !is_default<ap_impl<typename tag_of<A>::type>>::value &&
  22. !is_default<lift_impl<typename tag_of<A>::type>>::value
  23. >
  24. { };
  25. BOOST_HANA_NAMESPACE_END
  26. #endif // !BOOST_HANA_CONCEPT_APPLICATIVE_HPP