mk_re_concat method
\brief Create the concatenation of the regular languages.
\pre n > 0
def_API('Z3_mk_re_concat', AST ,(_in(CONTEXT), _in(UINT), _in_array(1, AST)))
Implementation
Z3_ast mk_re_concat(
Z3_context c,
int n,
ffi.Pointer<Z3_ast> args,
) {
return _mk_re_concat(
c,
n,
args,
);
}