mk_seq_nth method
\brief Retrieve from \c s the element positioned at position \c index. The function is under-specified if the index is out of bounds.
def_API('Z3_mk_seq_nth', AST ,(_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_seq_nth(
Z3_context c,
Z3_ast s,
Z3_ast index,
) {
return _mk_seq_nth(
c,
s,
index,
);
}