ast_map_size method

int ast_map_size(
  1. Z3_context c,
  2. Z3_ast_map m
)

\brief Return the size of the given map.

def_API('Z3_ast_map_size', UINT, (_in(CONTEXT), _in(AST_MAP)))

Implementation

int ast_map_size(
  Z3_context c,
  Z3_ast_map m,
) {
  return _ast_map_size(
    c,
    m,
  );
}