ast_vector_resize method
\brief Resize the AST vector \c v.
def_API('Z3_ast_vector_resize', VOID, (_in(CONTEXT), _in(AST_VECTOR), _in(UINT)))
Implementation
void ast_vector_resize(
Z3_context c,
Z3_ast_vector v,
int n,
) {
return _ast_vector_resize(
c,
v,
n,
);
}