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