mk_seq_extract method
\brief Extract subsequence starting at \c offset of \c length.
def_API('Z3_mk_seq_extract', AST ,(_in(CONTEXT), _in(AST), _in(AST), _in(AST)))
Implementation
Z3_ast mk_seq_extract(
Z3_context c,
Z3_ast s,
Z3_ast offset,
Z3_ast length,
) {
return _mk_seq_extract(
c,
s,
offset,
length,
);
}