mk_seq_replace method
\brief Replace the first occurrence of \c src with \c dst in \c s.
def_API('Z3_mk_seq_replace', AST ,(_in(CONTEXT), _in(AST), _in(AST), _in(AST)))
Implementation
Z3_ast mk_seq_replace(
Z3_context c,
Z3_ast s,
Z3_ast src,
Z3_ast dst,
) {
return _mk_seq_replace(
c,
s,
src,
dst,
);
}