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