blob: 764fc3c35e18aed1d43552e5b924319e4ee63a01 [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef __STOUT_SET_HPP__
#define __STOUT_SET_HPP__
#include <algorithm> // For std::set_intersection and std::set_difference.
#include <set>
template <typename T>
std::set<T> operator|(const std::set<T>& left, const std::set<T>& right)
{
// Note, we're not using 'set_union' since it affords us no benefit
// in efficiency and is more complicated to use given we have sets.
std::set<T> result = left;
result.insert(right.begin(), right.end());
return result;
}
template <typename T>
std::set<T> operator+(const std::set<T>& left, const T& t)
{
std::set<T> result = left;
result.insert(t);
return result;
}
template <typename T>
std::set<T> operator&(const std::set<T>& left, const std::set<T>& right)
{
std::set<T> result;
std::set_intersection(
left.begin(),
left.end(),
right.begin(),
right.end(),
std::inserter(result, result.begin()));
return result;
}
template <typename T>
std::set<T> operator-(const std::set<T>& left, const std::set<T>& right)
{
std::set<T> result;
std::set_difference(
left.begin(),
left.end(),
right.begin(),
right.end(),
std::inserter(result, result.begin()));
return result;
}
#endif // __STOUT_SET_HPP__