/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include #include #include #include #include #include #include #include #include #include #include #include int main() { using namespace boost::fusion; using boost::mpl::vector_c; using boost::mpl::advance; using boost::mpl::int_; namespace fusion = boost::fusion; namespace mpl = boost::mpl; std::cout << tuple_open('['); std::cout << tuple_close(']'); std::cout << tuple_delimiter(", "); /// Testing insert_range { char const* s = "Ruby"; typedef vector vector_type; vector_type t1(1, 'x', 3.3, s); vector_iterator pos(t1); typedef vector vector_type2; vector_type2 t2(999, 'z'); std::cout << insert_range(t1, pos, t2) << std::endl; BOOST_TEST((insert_range(t1, pos, t2) == make_vector(1, 'x', 999, 'z', 3.3, s))); std::cout << insert_range(t1, end(t1), t2) << std::endl; BOOST_TEST((insert_range(t1, end(t1), t2) == make_vector(1, 'x', 3.3, s, 999, 'z'))); std::cout << insert_range(t1, begin(t1), t2) << std::endl; BOOST_TEST((insert_range(t1, begin(t1), t2) == make_vector(999, 'z', 1, 'x', 3.3, s))); } { typedef vector_c mpl_vec; typedef mpl::begin::type mpl_vec_begin; typedef advance >::type mpl_vec_at3; typedef vector_c mpl_vec2; std::cout << fusion::insert_range(mpl_vec(), mpl_vec_at3(), mpl_vec2()) << std::endl; BOOST_TEST((fusion::insert_range(mpl_vec(), mpl_vec_at3(), mpl_vec2()) == make_vector(1, 2, 3, -1, -2, 4, 5))); } return boost::report_errors(); }