foldable.cpp 921 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/config.hpp>
  6. #include <boost/hana/equal.hpp>
  7. #include <boost/hana/fold_right.hpp>
  8. #include <boost/hana/if.hpp>
  9. #include <boost/hana/less.hpp>
  10. #include <boost/hana/prepend.hpp>
  11. #include <boost/hana/tuple.hpp>
  12. namespace hana = boost::hana;
  13. using namespace hana::literals;
  14. int main() {
  15. constexpr auto numbers = hana::tuple_c<int, 5, -1, 0, -7, -2, 0, -5, 4>;
  16. constexpr auto negatives = hana::tuple_c<int, -1, -7, -2, -5>;
  17. BOOST_HANA_CONSTEXPR_LAMBDA auto keep_negatives = [](auto n, auto acc) {
  18. return hana::if_(n < 0_c, hana::prepend(acc, n), acc);
  19. };
  20. BOOST_HANA_CONSTANT_CHECK(hana::fold_right(numbers, hana::tuple_c<int>, keep_negatives) == negatives);
  21. }