vcpkg/toolsrc/include/vcpkg_Sets.h
2017-01-25 19:38:14 -08:00

18 lines
399 B
C++

#pragma once
#include "vcpkg_Checks.h"
#include <unordered_set>
namespace vcpkg::Sets
{
template <typename T, typename Container>
void remove_all(std::unordered_set<T>* input_set, Container remove_these)
{
Checks::check_exit(input_set != nullptr, "Input set cannot be null");
for (const T& r : remove_these)
{
input_set->erase(r);
}
}
}