Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
118 lines
4.3 KiB
C++
118 lines
4.3 KiB
C++
// 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)
|
|
//
|
|
// Project home: https://github.com/ericniebler/range-v3
|
|
|
|
#include <vector>
|
|
#include <iterator>
|
|
#include <functional>
|
|
#include <range/v3/core.hpp>
|
|
#include <range/v3/view/adjacent_remove_if.hpp>
|
|
#include <range/v3/view/iota.hpp>
|
|
#include <range/v3/view/counted.hpp>
|
|
#include <range/v3/utility/copy.hpp>
|
|
#include <range/v3/algorithm/copy.hpp>
|
|
#include <range/v3/iterator/operations.hpp>
|
|
#include <range/v3/iterator/insert_iterators.hpp>
|
|
#include "../simple_test.hpp"
|
|
#include "../test_utils.hpp"
|
|
#include "../test_iterators.hpp"
|
|
|
|
int main()
|
|
{
|
|
using namespace ranges;
|
|
|
|
int const rgi[] = {1, 1, 1, 2, 3, 4, 4};
|
|
std::vector<int> out;
|
|
|
|
{
|
|
auto rng = rgi | views::adjacent_remove_if(std::equal_to<int>{});
|
|
has_type<int const &>(*begin(rng));
|
|
CPP_assert(view_<decltype(rng)>);
|
|
CPP_assert(common_range<decltype(rng)>);
|
|
CPP_assert(!sized_range<decltype(rng)>);
|
|
CPP_assert(bidirectional_iterator<decltype(begin(rng))>);
|
|
CPP_assert(!random_access_iterator<decltype(begin(rng))>);
|
|
CPP_assert(output_iterator<decltype(ranges::back_inserter(out)), int>);
|
|
CPP_assert(!equality_comparable<decltype(ranges::back_inserter(out))>);
|
|
copy(rng, ranges::back_inserter(out));
|
|
::check_equal(out, {1, 2, 3, 4});
|
|
}
|
|
|
|
{
|
|
auto rng2 = views::counted(rgi, 7)
|
|
| views::adjacent_remove_if([&](int i, int j) { return i == j; });
|
|
has_type<int const &>(*begin(rng2));
|
|
CPP_assert(view_<decltype(rng2)>);
|
|
CPP_assert(forward_range<decltype(rng2)>);
|
|
CPP_assert(common_range<decltype(rng2)>);
|
|
CPP_assert(!sized_range<decltype(rng2)>);
|
|
CPP_assert(bidirectional_iterator<decltype(begin(rng2))>);
|
|
CPP_assert(!random_access_iterator<decltype(begin(rng2))>);
|
|
::check_equal(rng2, {1, 2, 3, 4});
|
|
}
|
|
|
|
{
|
|
auto rng3 = views::counted(ForwardIterator<int const*>(rgi), 7)
|
|
| views::adjacent_remove_if(std::equal_to<int>{});
|
|
has_type<int const &>(*begin(rng3));
|
|
CPP_assert(view_<decltype(rng3)>);
|
|
CPP_assert(forward_range<decltype(rng3)>);
|
|
CPP_assert(!common_range<decltype(rng3)>);
|
|
CPP_assert(!sized_range<decltype(rng3)>);
|
|
CPP_assert(forward_iterator<decltype(begin(rng3))>);
|
|
CPP_assert(!bidirectional_iterator<decltype(begin(rng3))>);
|
|
::check_equal(rng3, {1, 2, 3, 4});
|
|
}
|
|
|
|
{
|
|
auto rng4 = views::counted(ForwardIterator<int const*>(rgi), 7)
|
|
| views::adjacent_remove_if([](int,int){return true;});
|
|
has_type<int const &>(*begin(rng4));
|
|
CHECK(*begin(rng4) == 4);
|
|
CPP_assert(view_<decltype(rng4)>);
|
|
CPP_assert(forward_range<decltype(rng4)>);
|
|
CPP_assert(!common_range<decltype(rng4)>);
|
|
CPP_assert(!sized_range<decltype(rng4)>);
|
|
CPP_assert(forward_iterator<decltype(begin(rng4))>);
|
|
CPP_assert(!bidirectional_iterator<decltype(begin(rng4))>);
|
|
::check_equal(rng4, {4});
|
|
}
|
|
|
|
{
|
|
auto is_odd_then_even = [](int i, int j){return 1==i%2 && 0 == j%2;};
|
|
auto rng5 = views::iota(0, 11) | views::adjacent_remove_if(is_odd_then_even);
|
|
has_type<int>(*begin(rng5));
|
|
CPP_assert(view_<decltype(rng5)>);
|
|
CPP_assert(forward_range<decltype(rng5)>);
|
|
CPP_assert(common_range<decltype(rng5)>);
|
|
CPP_assert(!sized_range<decltype(rng5)>);
|
|
CPP_assert(bidirectional_iterator<decltype(begin(rng5))>);
|
|
CPP_assert(!random_access_iterator<decltype(begin(rng5))>);
|
|
::check_equal(rng5, {0,2,4,6,8,10});
|
|
}
|
|
|
|
{
|
|
// Verify that forward and backward traversal both select the same elements.
|
|
auto rng = views::adjacent_remove_if(rgi, std::equal_to<int>{});
|
|
std::vector<int const*> pointers;
|
|
for(auto& i : rng)
|
|
pointers.push_back(&i);
|
|
auto pos = ranges::end(rng);
|
|
for(auto i = pointers.size(); i != 0;)
|
|
{
|
|
CHECK(pos != ranges::begin(rng));
|
|
CHECK(&*--pos == pointers[--i]);
|
|
}
|
|
CHECK(pos == ranges::begin(rng));
|
|
}
|
|
|
|
return test_result();
|
|
}
|