| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- // Range v3 library
- //
- // Copyright Eric Niebler 2014-present
- //
- // Use, modification and distribution is subject to 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)
- #include <set>
- #include <vector>
- #include <range/v3/core.hpp>
- #include <range/v3/view/iota.hpp>
- #include <range/v3/view/take.hpp>
- #include <range/v3/view/for_each.hpp>
- #include <range/v3/view/ref.hpp>
- #include <range/v3/action/insert.hpp>
- #include "../simple_test.hpp"
- #include "../test_utils.hpp"
- template<typename T>
- struct vector_like : std::vector<T> {
- using std::vector<T>::vector;
- using typename std::vector<T>::size_type;
- size_type last_reservation{};
- size_type reservation_count{};
- void reserve(size_type n) {
- std::vector<T>::reserve(n);
- last_reservation = n;
- ++reservation_count;
- }
- };
- int main()
- {
- using namespace ranges;
- {
- std::vector<int> v;
- auto i = insert(v, v.begin(), 42);
- CHECK(i == v.begin());
- ::check_equal(v, {42});
- insert(v, v.end(), {1,2,3});
- ::check_equal(v, {42,1,2,3});
- insert(v, v.begin(), views::ints | views::take(3));
- ::check_equal(v, {0,1,2,42,1,2,3});
- int rg[] = {9,8,7};
- insert(v, v.begin()+3, rg);
- ::check_equal(v, {0,1,2,9,8,7,42,1,2,3});
- insert(v, v.begin()+1, rg);
- ::check_equal(v, {0,9,8,7,1,2,9,8,7,42,1,2,3});
- }
- {
- std::set<int> s;
- insert(s,
- views::ints|views::take(10)|views::for_each([](int i){return yield_if(i%2==0,i);}));
- ::check_equal(s, {0,2,4,6,8});
- auto j = insert(s, 10);
- CHECK(j.first == prev(s.end()));
- CHECK(j.second == true);
- ::check_equal(s, {0,2,4,6,8,10});
- insert(views::ref(s), 12);
- ::check_equal(s, {0,2,4,6,8,10,12});
- }
- {
- const std::size_t N = 1024;
- vector_like<int> vl;
- insert(vl, vl.end(), views::iota(0, int{N}));
- CHECK(vl.reservation_count == 1u);
- CHECK(vl.last_reservation == N);
- auto r = views::iota(0, int{2 * N});
- insert(vl, vl.begin() + 42, begin(r), end(r));
- CHECK(vl.reservation_count == 2u);
- CHECK(vl.last_reservation == 3 * N);
- int i = 42;
- insert(vl, vl.end(), &i, &i + 1);
- CHECK(vl.reservation_count == 3u);
- CHECK(vl.last_reservation > 3 * N + 1);
- }
- return ::test_result();
- }
|