ast_map_dec_ref method

void ast_map_dec_ref(
  1. Z3_context c,
  2. Z3_ast_map m
)

\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,
  );
}