ast_map_erase method
\brief Erase a key from the map.
def_API('Z3_ast_map_erase', VOID, (_in(CONTEXT), _in(AST_MAP), _in(AST)))
Implementation
void ast_map_erase(
Z3_context c,
Z3_ast_map m,
Z3_ast k,
) {
return _ast_map_erase(
c,
m,
k,
);
}