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