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