mk_seq_at method
\brief Retrieve from \c s the unit sequence positioned at position \c index. The sequence is empty if the index is out of bounds.
def_API('Z3_mk_seq_at', AST ,(_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_seq_at(
Z3_context c,
Z3_ast s,
Z3_ast index,
) {
return _mk_seq_at(
c,
s,
index,
);
}