#ifndef PYTHONIC_INCLUDE_BUILTIN_SET_DIFFERENCE_HPP #define PYTHONIC_INCLUDE_BUILTIN_SET_DIFFERENCE_HPP #include "pythonic/include/types/set.hpp" #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace set { template types::set difference(types::set const &set, Types const &... others); template types::set difference(types::set &&set, Types const &... others); template types::empty_set difference(types::empty_set const &set, Types const &... others); template types::set difference(types::set const &set); template types::set difference(types::set &&set); types::empty_set difference(types::empty_set const &set); DEFINE_FUNCTOR(pythonic::builtins::set, difference); } } PYTHONIC_NS_END #endif