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