%PDF- %PDF-
| Direktori : /proc/thread-self/root/usr/lib/python3/dist-packages/pythran/pythonic/builtins/set/ |
| Current File : //proc/thread-self/root/usr/lib/python3/dist-packages/pythran/pythonic/builtins/set/issuperset.hpp |
#ifndef PYTHONIC_BUILTIN_SET_ISSUPERSET_HPP
#define PYTHONIC_BUILTIN_SET_ISSUPERSET_HPP
#include "pythonic/include/builtins/set/issuperset.hpp"
#include "pythonic/types/set.hpp"
#include "pythonic/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
namespace set
{
template <class T, class U>
bool issuperset(types::set<T> const &set, U const &other)
{
return set.issuperset(other);
}
template <class U>
bool issuperset(types::empty_set const &set, U const &other)
{
return false;
}
}
}
PYTHONIC_NS_END
#endif