mirror of
https://github.com/boostorg/multi_index.git
synced 2025-05-11 05:14:05 +00:00
allocator_utilities.hpp: added partial_std_allocator_wrapper::value_type composite_key.hpp: used hash_fwd.hpp auto_space.hpp: added support for non-standard allocators bidir_node_iterator.hpp: moved friend-injected operators out of class copy_map.hpp: added support for non-standard allocators hash_index_args.hpp: removed deprecated use of <boost/functional/hash/hash.hpp> hash_index_iterator.hpp: moved friend-injected operators our of class hash_index_node.hpp: added support for non-standard allocators header_holder.hpp:added support for non-standard allocators index_base.hpp: added support for non-standard allocators, added modify_rollback, added small improvement to modify index_loader.hpp: added support for non-standard allocators index_matcher.hpp: added support for non-standard allocators index_node_base.hpp: added support for non-standard allocators iter_adaptor.hpp: added some out-of-class operators to alleviate a MSVC++ 6.0 problem modify_key_adaptor.hpp: renamed some vars to accomudate broader usage scope node_type.hpp: added support for non-standard allocators ord_index_node.hpp: added support for non-standard allocators ord_index_ops.hpp: implemented a more efficient equal_range rnd_index_loader.hpp: added support for non-standard allocators rnd_index_node.hpp: added support for non-standard allocators rnd_index_ops.hpp: added support for non-standard allocators rnd_index_ptr_array.hpp: added support for non-standard allocators rnd_node_iterator.hpp: moved friend-injected operators out of class seq_index_node.hpp: added support for non-standard allocators seq_index_ops.hpp: added support for non-standard allocators uintptr_type.hpp: added support for __int64 unbounded.hpp: fixed ODR problem value_compare.hpp: fixed a small unefficiency global_fun: initial commit hashed_index.hpp: added support for non-standard allocators, added c[r]{begin|end}, [local_]iterator_to, rollback modify identity_fwd.hpp: fixed wrong include guard name key_extractors.hpp: added global_fun mem_fun.hpp: removed superfluous =0's ordered_index.hpp: added support for non-standard allocators, added c[r]{begin|end}, iterator_to, rollback modify, improved equal_range and range, added conformance to DR 233 random_access_index.hpp: added support for non-standard allocators, added c[r]{begin|end}, iterator_to, rollback modify, added conformance to 23.1.1/9 sequenced_index.hpp: added support for non-standard allocators, added c[r]{begin|end}, iterator_to, rollback modify, added conformance to 23.1.1/9, improved resize multi_index_container.hpp: added support for non-standard allocators, improved ctor_args_list, rollback modify acknowledgements.html: added entry for Boost 1.35 examples.html: renamed example 2, added B.IP example/composite_keys.cpp future_work.html: removed entry on bimap hash_indices.html: added c[r]{begin|end}, [local_]iterator_to, rollback modify reference/index.html: added global_fun reference/key_extraction.html: added global_fun, added technical correction multi_index_container.html: added support for non-standard allocators ord_indices.html: added c[r]{begin|end}, iterator_to, rollback modify rnd_indices.html: added c[r]{begin|end}, iterator_to, rollback modify seq_indices.html: added c[r]{begin|end}, iterator_to, rollback modify release_notes.html: added entry for Boost 1.35 tests.html: added new serialization test file basics.html: added rollback modify creation.html: added support for non-standard allocators tutorial/indices.html: added iterator_to tutorial/key_extraction.html: added global_fun composite_keys.cpp: fixed technicality fun_key.cpp: was memfun_key.cpp, added global_fun ip_allocator.cpp: initial commit example/Jamfile.v2: renamed memfun_key, added ip_allocator test_perf.cpp: fixed technicality employee.hpp: used a non-standard allocator test/Jamfile.v2: added new test file non_std_allocator.hpp: initial commit pair_of_ints.hpp: added decrement facilities test_capacity.cpp: added extra check on resize test_copy_assignment.cpp: added test for 23.1.1/9 test_iterators.cpp: added tests for c[r]{begin|end} and [local_]iterator_to, fixed technicality test_key_extractors.cpp: added tests for global_fun test_modifiers.cpp: added tests dor DR 233, fixed technicality test_range.cpp: added extra checks to secure range refactoring test_rearrange.cpp: fixed technicality test_serialization.cpp: added new test file test_serialization1.cpp: corrected include, used a non-standard allocator test_serialization2.cpp: corrected include, used a non-standard allocator, split some stuff ro test_serialization3.cpp test_serialization3.cpp: initial commit test_serialization3.hpp: initial commit test_serialization_template.hpp: removed some reliance on ADL test_update.cpp: addes tests for rollback modify, fixed technicality [SVN r39922]
121 lines
3.2 KiB
C++
121 lines
3.2 KiB
C++
/* Boost.MultiIndex test for range().
|
|
*
|
|
* Copyright 2003-2007 Joaquín M López Muñoz.
|
|
* 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/multi_index for library home page.
|
|
*/
|
|
|
|
#include "test_range.hpp"
|
|
|
|
#include <boost/config.hpp> /* keep it first to prevent nasty warns in MSVC */
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include "pre_multi_index.hpp"
|
|
#include <boost/multi_index_container.hpp>
|
|
#include <boost/multi_index/identity.hpp>
|
|
#include <boost/multi_index/ordered_index.hpp>
|
|
#include <boost/test/test_tools.hpp>
|
|
|
|
using namespace boost::multi_index;
|
|
|
|
typedef multi_index_container<int> int_set;
|
|
typedef int_set::iterator int_set_iterator;
|
|
|
|
#undef _
|
|
#define _ ,
|
|
|
|
#undef CHECK_RANGE
|
|
#define CHECK_RANGE(p,check_range) \
|
|
{\
|
|
int v[]=check_range;\
|
|
std::size_t size_v=sizeof(v)/sizeof(int);\
|
|
BOOST_CHECK(std::size_t(std::distance((p).first,(p).second))==size_v);\
|
|
BOOST_CHECK(std::equal((p).first,(p).second,&v[0]));\
|
|
}
|
|
|
|
#undef CHECK_VOID_RANGE
|
|
#define CHECK_VOID_RANGE(p) BOOST_CHECK((p).first==(p).second)
|
|
|
|
void test_range()
|
|
{
|
|
int_set is;
|
|
|
|
for(int i=1;i<=10;++i)is.insert(i);
|
|
|
|
std::pair<int_set::iterator,int_set::iterator> p;
|
|
|
|
p=is.range(unbounded,unbounded);
|
|
CHECK_RANGE(p,{1 _ 2 _ 3 _ 4 _ 5 _ 6 _ 7 _ 8 _ 9 _ 10});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less<int>(),5), /* 5 < x */
|
|
unbounded);
|
|
CHECK_RANGE(p,{6 _ 7 _ 8 _ 9 _ 10});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less_equal<int>(),8), /* 8 <= x */
|
|
unbounded);
|
|
CHECK_RANGE(p,{8 _ 9 _ 10});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less_equal<int>(),11), /* 11 <= x */
|
|
unbounded);
|
|
CHECK_VOID_RANGE(p);
|
|
|
|
p=is.range(
|
|
unbounded,
|
|
std::bind2nd(std::less<int>(),8)); /* x < 8 */
|
|
CHECK_RANGE(p,{1 _ 2 _ 3 _ 4 _ 5 _ 6 _ 7});
|
|
|
|
p=is.range(
|
|
unbounded,
|
|
std::bind2nd(std::less_equal<int>(),4)); /* x <= 4 */
|
|
CHECK_RANGE(p,{1 _ 2 _ 3 _ 4});
|
|
|
|
p=is.range(
|
|
unbounded,
|
|
std::bind2nd(std::less_equal<int>(),0)); /* x <= 0 */
|
|
CHECK_VOID_RANGE(p);
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less<int>(),6), /* 6 < x */
|
|
std::bind2nd(std::less_equal<int>(),9)); /* x <= 9 */
|
|
CHECK_RANGE(p,{7 _ 8 _ 9});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less_equal<int>(),4), /* 4 <= x */
|
|
std::bind2nd(std::less<int>(),5)); /* x < 5 */
|
|
CHECK_RANGE(p,{4});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less_equal<int>(),10), /* 10 <= x */
|
|
std::bind2nd(std::less_equal<int>(),10)); /* x <= 10 */
|
|
CHECK_RANGE(p,{10});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less<int>(),0), /* 0 < x */
|
|
std::bind2nd(std::less<int>(),11)); /* x < 11 */
|
|
CHECK_RANGE(p,{1 _ 2 _ 3 _ 4 _ 5 _ 6 _ 7 _ 8 _ 9 _ 10});
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less<int>(),7), /* 7 < x */
|
|
std::bind2nd(std::less_equal<int>(),7)); /* x <= 7 */
|
|
CHECK_VOID_RANGE(p);
|
|
BOOST_CHECK(p.first==is.upper_bound(7));
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less_equal<int>(),8), /* 8 <= x */
|
|
std::bind2nd(std::less<int>(),2)); /* x < 2 */
|
|
CHECK_VOID_RANGE(p);
|
|
BOOST_CHECK(p.first==is.lower_bound(8));
|
|
|
|
p=is.range(
|
|
std::bind1st(std::less<int>(),4), /* 4 < x */
|
|
std::bind2nd(std::less<int>(),5)); /* x < 5 */
|
|
CHECK_VOID_RANGE(p);
|
|
BOOST_CHECK(p.first!=is.end());
|
|
}
|