mk_char_is_digit method

Z3_ast mk_char_is_digit(
  1. Z3_context c,
  2. Z3_ast ch
)

\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,
  );
}