1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/util/algorithm.hpp
2021-04-19 07:02:44 -04:00

23 lines
515 B
C++

#pragma once
#include <algorithm>
namespace llarp::util
{
/// remove items from a container if a predicate is true
/// return the number of items removed
constexpr auto erase_if = [](auto& container, auto&& pred) -> std::size_t {
std::size_t removed = 0;
for (auto itr = container.begin(); itr != container.end();)
{
if (pred(*itr))
{
itr = container.erase(itr);
removed++;
}
else
itr++;
}
return removed;
};
} // namespace llarp::util