metafunction_class.cpp 898 B

1234567891011121314151617181920212223242526
  1. // Copyright Louis Dionne 2013-2017
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  4. #include <boost/hana/assert.hpp>
  5. #include <boost/hana/equal.hpp>
  6. #include <boost/hana/type.hpp>
  7. #include <type_traits>
  8. namespace hana = boost::hana;
  9. struct f { template <typename ...> struct apply { struct type; }; };
  10. struct x;
  11. struct y;
  12. BOOST_HANA_CONSTANT_CHECK(hana::metafunction_class<f>() == hana::type_c<f::apply<>::type>);
  13. BOOST_HANA_CONSTANT_CHECK(hana::metafunction_class<f>(hana::type_c<x>) == hana::type_c<f::apply<x>::type>);
  14. BOOST_HANA_CONSTANT_CHECK(hana::metafunction_class<f>(hana::type_c<x>, hana::type_c<y>) == hana::type_c<f::apply<x, y>::type>);
  15. static_assert(std::is_same<
  16. decltype(hana::metafunction_class<f>)::apply<x, y>::type,
  17. f::apply<x, y>::type
  18. >::value, "");
  19. int main() { }