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