| 1 | |
|---|
| 2 | // Copyright Aleksey Gurtovoy 2000-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/erase_range.cpp,v $ |
|---|
| 11 | // $Date: 2004/09/02 15:41:35 $ |
|---|
| 12 | // $Revision: 1.4 $ |
|---|
| 13 | |
|---|
| 14 | #include <boost/mpl/erase.hpp> |
|---|
| 15 | #include <boost/mpl/list.hpp> |
|---|
| 16 | #include <boost/mpl/find.hpp> |
|---|
| 17 | #include <boost/mpl/size.hpp> |
|---|
| 18 | #include <boost/mpl/begin_end.hpp> |
|---|
| 19 | #include <boost/mpl/aux_/test.hpp> |
|---|
| 20 | |
|---|
| 21 | MPL_TEST_CASE() |
|---|
| 22 | { |
|---|
| 23 | typedef list<int,char,long,short,unsigned,long,double,long> types; |
|---|
| 24 | |
|---|
| 25 | typedef find<types,short>::type iter1; |
|---|
| 26 | typedef find<types,double>::type iter2; |
|---|
| 27 | |
|---|
| 28 | typedef erase<types,iter1,iter2>::type result; |
|---|
| 29 | |
|---|
| 30 | MPL_ASSERT_RELATION( size<result>::value, ==, 5 ); |
|---|
| 31 | |
|---|
| 32 | typedef find<result,unsigned>::type iter; |
|---|
| 33 | MPL_ASSERT(( is_same< iter, end<result>::type > )); |
|---|
| 34 | } |
|---|