ast_map_reset method

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

\brief Remove all keys from the given map.

def_API('Z3_ast_map_reset', VOID, (_in(CONTEXT), _in(AST_MAP)))

Implementation

void ast_map_reset(
  Z3_context c,
  Z3_ast_map m,
) {
  return _ast_map_reset(
    c,
    m,
  );
}