mk_re_range method
\brief Create the range regular expression over two sequences of length 1.
def_API('Z3_mk_re_range', AST ,(_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_re_range(
Z3_context c,
Z3_ast lo,
Z3_ast hi,
) {
return _mk_re_range(
c,
lo,
hi,
);
}