#ifndef PYTHONIC_INCLUDE_OPERATOR_IADD_HPP #define PYTHONIC_INCLUDE_OPERATOR_IADD_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/list.hpp" #include "pythonic/include/types/set.hpp" #include "pythonic/include/types/dict.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template auto iadd(types::empty_list, types::list const &b) -> decltype(b); template auto iadd(types::empty_dict, types::dict const &b) -> decltype(b); template auto iadd(types::empty_set, types::set const &b) -> decltype(b); } PYTHONIC_NS_END #define OPERATOR_NAME iadd #define OPERATOR_SYMBOL + #define OPERATOR_ISYMBOL += #include "pythonic/include/operator_/icommon.hpp" #endif