1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
// Range v3 library
//
// Copyright Andrey Diduh 2019
//
// 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 <string>
#include <range/v3/action/remove.hpp>
#include "../simple_test.hpp"
#include "../test_utils.hpp"
using namespace ranges;
struct Data
{
int i;
Data() = default;
explicit Data(int j) : i(j) {}
bool operator==(const Data& other) const {
return other.i == i;
}
bool operator!=(const Data& other) const {
return other.i != i;
}
};
void simple_test()
{
std::vector<Data> list;
list.emplace_back(Data{1});
list.emplace_back(Data{2});
list.emplace_back(Data{3});
list.emplace_back(Data{4});
Data d2{2};
const auto remove_data = actions::remove(d2);
list |= remove_data;
check_equal(list, {Data{1}, Data{3}, Data{4}});
list |= actions::remove(3, &Data::i);
check_equal(list, {Data{1}, Data{4}});
}
void string_test()
{
std::vector<std::string> list = {"aaa", "bbb", "ccc"};
list |= actions::remove("bbb");
check_equal(list, {"aaa", "ccc"});
}
int main()
{
simple_test();
string_test();
return ::test_result();
}
|