ast_map_erase method

void ast_map_erase(
  1. Z3_context c,
  2. Z3_ast_map m,
  3. Z3_ast k
)

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