ast_map_size method
\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,
);
}
\brief Return the size of the given map.
def_API('Z3_ast_map_size', UINT, (_in(CONTEXT), _in(AST_MAP)))
int ast_map_size(
Z3_context c,
Z3_ast_map m,
) {
return _ast_map_size(
c,
m,
);
}