mk_re_allchar method

Z3_ast mk_re_allchar(
  1. Z3_context c,
  2. Z3_sort regex_sort
)

\brief Create a regular expression that accepts all singleton sequences of the regular expression sort

def_API('Z3_mk_re_allchar', AST, (_in(CONTEXT), _in(SORT)))

Implementation

Z3_ast mk_re_allchar(
  Z3_context c,
  Z3_sort regex_sort,
) {
  return _mk_re_allchar(
    c,
    regex_sort,
  );
}