ast_map_keys method
\brief Return the keys stored in the given map.
def_API('Z3_ast_map_keys', AST_VECTOR, (_in(CONTEXT), _in(AST_MAP)))
Implementation
Z3_ast_vector ast_map_keys(
Z3_context c,
Z3_ast_map m,
) {
return _ast_map_keys(
c,
m,
);
}