#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 bool issuperset(types::set const &set, U const &other) { return set.issuperset(other); } template bool issuperset(types::empty_set const &set, U const &other) { return false; } } } PYTHONIC_NS_END #endif