ast_vector_size method

int ast_vector_size(
  1. Z3_context c,
  2. Z3_ast_vector v
)

\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,
  );
}