#ifndef PYTHONIC_INCLUDE_BUILTIN_STR_ISDIGIT_HPP #define PYTHONIC_INCLUDE_BUILTIN_STR_ISDIGIT_HPP #include "pythonic/include/types/str.hpp" #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace str { bool isdigit(types::str const &s); DEFINE_FUNCTOR(pythonic::builtins::str, isdigit); } } PYTHONIC_NS_END #endif