Lines Matching refs:joined
94 void test_random_access_join(Range1& rng1, Range2& rng2, JoinedRange joined) in test_random_access_join() argument
96 BOOST_CHECK_EQUAL( boost::end(joined) - boost::begin(joined), boost::distance(joined) ); in test_random_access_join()
97 BOOST_CHECK( boost::end(joined) <= boost::begin(joined) ); in test_random_access_join()
98 BOOST_CHECK( boost::begin(joined) >= boost::end(joined) ); in test_random_access_join()
99 if (boost::empty(joined)) in test_random_access_join()
101 BOOST_CHECK(!(boost::begin(joined) < boost::end(joined))); in test_random_access_join()
102 BOOST_CHECK(!(boost::end(joined) > boost::begin(joined))); in test_random_access_join()
106 BOOST_CHECK(boost::begin(joined) < boost::end(joined)); in test_random_access_join()
107 BOOST_CHECK(boost::end(joined) < boost::begin(joined)); in test_random_access_join()
111 const difference_t count = boost::distance(joined); in test_random_access_join()
112 BOOST_CHECK( boost::begin(joined) + count == boost::end(joined) ); in test_random_access_join()
113 BOOST_CHECK( boost::end(joined) - count == boost::begin(joined) ); in test_random_access_join()
116 iterator_t it = boost::begin(joined); in test_random_access_join()
118 BOOST_CHECK( it == boost::end(joined) ); in test_random_access_join()
120 it = boost::end(joined); in test_random_access_join()
122 BOOST_CHECK( it == boost::begin(joined) ); in test_random_access_join()
278 std::vector<int> joined; in test_join_iterator_reference_type_constness_ticket8483() local
279 boost::push_back(joined, join(v1, v2)); in test_join_iterator_reference_type_constness_ticket8483()
280 boost::push_back(joined, join(v2, v1)); in test_join_iterator_reference_type_constness_ticket8483()