mk_char_is_digit method
\brief Create a check if the character is a digit.
def_API('Z3_mk_char_is_digit', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_char_is_digit(
Z3_context c,
Z3_ast ch,
) {
return _mk_char_is_digit(
c,
ch,
);
}