#ifndef PYTHONIC_BUILTIN_SET_ADD_HPP #define PYTHONIC_BUILTIN_SET_ADD_HPP #include "pythonic/include/builtins/set/add.hpp" #include "pythonic/builtins/None.hpp" #include "pythonic/types/NoneType.hpp" #include "pythonic/types/set.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace set { template types::none_type add(types::set &s, F const &value) { s.add(value); return builtins::None; } template types::none_type add(types::set &&s, F const &value) { s.add(value); return builtins::None; } } } PYTHONIC_NS_END #endif