mk_seq_concat method
\brief Concatenate sequences.
\pre n > 0
def_API('Z3_mk_seq_concat', AST ,(_in(CONTEXT), _in(UINT), _in_array(1, AST)))
Implementation
Z3_ast mk_seq_concat(
Z3_context c,
int n,
ffi.Pointer<Z3_ast> args,
) {
return _mk_seq_concat(
c,
n,
args,
);
}