ast_vector_size method
\brief Return the size of the given AST vector.
def_API('Z3_ast_vector_size', UINT, (_in(CONTEXT), _in(AST_VECTOR)))
Implementation
int ast_vector_size(
Z3_context c,
Z3_ast_vector v,
) {
return _ast_vector_size(
c,
v,
);
}