%PDF- %PDF-
Direktori : /proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/builtins/set/ |
Current File : //proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/builtins/set/isdisjoint.hpp |
#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 <class T, class U> bool isdisjoint(types::set<T> const &calling_set, U const &arg_set) { return calling_set.isdisjoint(arg_set); } template <class U> bool isdisjoint(types::empty_set const &calling_set, U const &arg_set) { return true; } } } PYTHONIC_NS_END #endif