metafunction.cpp 828 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. template <typename ...> struct f { struct type; };
  10. struct x;
  11. struct y;
  12. BOOST_HANA_CONSTANT_CHECK(hana::metafunction<f>() == hana::type_c<f<>::type>);
  13. BOOST_HANA_CONSTANT_CHECK(hana::metafunction<f>(hana::type_c<x>) == hana::type_c<f<x>::type>);
  14. BOOST_HANA_CONSTANT_CHECK(hana::metafunction<f>(hana::type_c<x>, hana::type_c<y>) == hana::type_c<f<x, y>::type>);
  15. static_assert(std::is_same<
  16. decltype(hana::metafunction<f>)::apply<x, y>::type,
  17. f<x, y>::type
  18. >::value, "");
  19. int main() { }