/* @copyright Louis Dionne 2014 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #include #include #include #include using namespace boost::hana; int main() { //! [main] std::stringstream before, after; auto xs = tuple(1, 2, 3) | tap([&](auto x) { before << x << ' '; }) | [](auto x) { return tuple(x, -x); } | tap([&](auto x) { after << x << ' '; }); BOOST_HANA_RUNTIME_ASSERT(before.str() == "1 2 3 "); BOOST_HANA_RUNTIME_ASSERT(after.str() == "1 -1 2 -2 3 -3 "); BOOST_HANA_RUNTIME_ASSERT(xs == tuple(1, -1, 2, -2, 3, -3)); //! [main] }