flatten.cpp 898 B

12345678910111213141516171819202122232425
  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/flatten.hpp>
  7. #include <boost/hana/optional.hpp>
  8. #include <boost/hana/tuple.hpp>
  9. namespace hana = boost::hana;
  10. static_assert(
  11. hana::flatten(hana::make_tuple(hana::make_tuple(1, 2, 3),
  12. hana::make_tuple(4, 5),
  13. hana::make_tuple(6, 7, 8, 9)))
  14. ==
  15. hana::make_tuple(1, 2, 3, 4, 5, 6, 7, 8, 9)
  16. , "");
  17. BOOST_HANA_CONSTANT_CHECK(hana::flatten(hana::nothing) == hana::nothing);
  18. static_assert(hana::flatten(hana::just(hana::just(1))) == hana::just(1), "");
  19. BOOST_HANA_CONSTANT_CHECK(hana::flatten(hana::just(hana::nothing)) == hana::nothing);
  20. int main() { }