Files
allhaileris afb81b8278
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
init
2026-02-16 15:50:16 +03:00

69 lines
1.3 KiB
C++

// 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();
}