mk_seq_contains method
\brief Check if \c container contains \c containee.
\pre \c container and \c containee are the same sequence sorts.
def_API('Z3_mk_seq_contains', AST ,(_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_seq_contains(
Z3_context c,
Z3_ast container,
Z3_ast containee,
) {
return _mk_seq_contains(
c,
container,
containee,
);
}