1 | |
---|
2 | // Copyright Aleksey Gurtovoy 2001-2004 |
---|
3 | // |
---|
4 | // Distributed under the Boost Software License, Version 1.0. |
---|
5 | // (See accompanying file LICENSE_1_0.txt or copy at |
---|
6 | // http://www.boost.org/LICENSE_1_0.txt) |
---|
7 | // |
---|
8 | // See http://www.boost.org/libs/mpl for documentation. |
---|
9 | |
---|
10 | // $Source: /cvsroot/boost/boost/libs/mpl/test/insert_range.cpp,v $ |
---|
11 | // $Date: 2004/09/02 15:41:35 $ |
---|
12 | // $Revision: 1.4 $ |
---|
13 | |
---|
14 | #include <boost/mpl/insert_range.hpp> |
---|
15 | #include <boost/mpl/find.hpp> |
---|
16 | #include <boost/mpl/vector_c.hpp> |
---|
17 | #include <boost/mpl/list.hpp> |
---|
18 | #include <boost/mpl/size.hpp> |
---|
19 | #include <boost/mpl/range_c.hpp> |
---|
20 | #include <boost/mpl/equal.hpp> |
---|
21 | |
---|
22 | #include <boost/mpl/aux_/test.hpp> |
---|
23 | |
---|
24 | MPL_TEST_CASE() |
---|
25 | { |
---|
26 | typedef vector_c<int,0,1,7,8,9> numbers; |
---|
27 | typedef find< numbers,integral_c<int,7> >::type pos; |
---|
28 | typedef insert_range< numbers,pos,range_c<int,2,7> >::type range; |
---|
29 | |
---|
30 | MPL_ASSERT_RELATION( size<range>::value, ==, 10 ); |
---|
31 | MPL_ASSERT(( equal< range,range_c<int,0,10> > )); |
---|
32 | |
---|
33 | typedef insert_range< list0<>,end< list0<> >::type,list1<int> >::type result2; |
---|
34 | MPL_ASSERT_RELATION( size<result2>::value, ==, 1 ); |
---|
35 | } |
---|