tuple.cpp 903 B

1234567891011121314151617181920212223242526272829
  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/integral_constant.hpp>
  7. #include <boost/hana/transform.hpp>
  8. #include <boost/hana/tuple.hpp>
  9. #include <string>
  10. namespace hana = boost::hana;
  11. using namespace hana::literals;
  12. struct Fish { std::string name; };
  13. struct Cat { std::string name; };
  14. struct Dog { std::string name; };
  15. int main() {
  16. hana::tuple<Fish, Cat, Dog> animals{{"Nemo"}, {"Garfield"}, {"Snoopy"}};
  17. animals[0_c].name = "Moby Dick"; // can modify elements in place, like std::tuple
  18. auto names = hana::transform(animals, [](auto a) {
  19. return a.name;
  20. });
  21. BOOST_HANA_RUNTIME_CHECK(names == hana::make_tuple("Moby Dick", "Garfield", "Snoopy"));
  22. }