#ifndef PYTHONIC_INCLUDE_BUILTIN_STR_MOD_HPP #define PYTHONIC_INCLUDE_BUILTIN_STR_MOD_HPP #include "pythonic/include/types/str.hpp" #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace str { template types::str __mod__(types::str const &, T const &arg); template types::str __mod__(types::str const &, std::tuple const &args); template types::str __mod__(types::str const &, types::array const &args); DEFINE_FUNCTOR(pythonic::builtins::str, __mod__); } } PYTHONIC_NS_END #endif