Files
mpl/test/insert.cpp

32 lines
830 B
C++
Raw Permalink Normal View History

// Copyright Aleksey Gurtovoy 2001-2004
2002-09-16 19:25:33 +00:00
//
// 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)
//
// See http://www.boost.org/libs/mpl for documentation.
2008-10-10 09:21:07 +00:00
// $Id$
// $Date$
// $Revision$
2002-09-16 19:25:33 +00:00
#include <boost/mpl/insert.hpp>
2002-09-16 19:25:33 +00:00
#include <boost/mpl/find.hpp>
#include <boost/mpl/vector_c.hpp>
#include <boost/mpl/size.hpp>
#include <boost/mpl/range_c.hpp>
#include <boost/mpl/equal.hpp>
#include <boost/mpl/aux_/test.hpp>
2002-09-16 19:25:33 +00:00
MPL_TEST_CASE()
2002-09-16 19:25:33 +00:00
{
typedef vector_c<int,0,1,3,4,5,6,7,8,9> numbers;
typedef find< numbers,integral_c<int,3> >::type pos;
typedef insert< numbers,pos,integral_c<int,2> >::type range;
MPL_ASSERT_RELATION( size<range>::value, ==, 10 );
MPL_ASSERT(( equal< range,range_c<int,0,10> > ));
2002-09-16 19:25:33 +00:00
}