#include <algorithm>
#include <set>
Go to the source code of this file.
|
template<typename T > |
std::set< T > | operator| (const std::set< T > &left, const std::set< T > &right) |
|
template<typename T > |
std::set< T > | operator+ (const std::set< T > &left, const T &t) |
|
template<typename T > |
std::set< T > | operator& (const std::set< T > &left, const std::set< T > &right) |
|
template<typename T > |
std::set< T > | operator- (const std::set< T > &left, const std::set< T > &right) |
|
template<typename T >
std::set<T> operator& |
( |
const std::set< T > & |
left, |
|
|
const std::set< T > & |
right |
|
) |
| |
template<typename T >
std::set<T> operator+ |
( |
const std::set< T > & |
left, |
|
|
const T & |
t |
|
) |
| |
template<typename T >
std::set<T> operator- |
( |
const std::set< T > & |
left, |
|
|
const std::set< T > & |
right |
|
) |
| |
template<typename T >
std::set<T> operator| |
( |
const std::set< T > & |
left, |
|
|
const std::set< T > & |
right |
|
) |
| |