#ifndef PYTHONIC_INCLUDE_BUILTIN_SET_ISSUPERSET_HPP #define PYTHONIC_INCLUDE_BUILTIN_SET_ISSUPERSET_HPP #include "pythonic/include/types/set.hpp" #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace set { template bool issuperset(types::set const &set, U const &other); template bool issuperset(types::empty_set const &set, U const &other); DEFINE_FUNCTOR(pythonic::builtins::set, issuperset); } } PYTHONIC_NS_END #endif