ast_map_dec_ref method
\brief Decrement the reference counter of the given AST map.
def_API('Z3_ast_map_dec_ref', VOID, (_in(CONTEXT), _in(AST_MAP)))
Implementation
void ast_map_dec_ref(
Z3_context c,
Z3_ast_map m,
) {
return _ast_map_dec_ref(
c,
m,
);
}