ast_vector_get method
\brief Return the AST at position \c i in the AST vector \c v.
\pre i < Z3_ast_vector_size(c, v)
def_API('Z3_ast_vector_get', AST, (_in(CONTEXT), _in(AST_VECTOR), _in(UINT)))
Implementation
Z3_ast ast_vector_get(
Z3_context c,
Z3_ast_vector v,
int i,
) {
return _ast_vector_get(
c,
v,
i,
);
}