ast_map_insert method
\brief Store/Replace a new key, value pair in the given map.
def_API('Z3_ast_map_insert', VOID, (_in(CONTEXT), _in(AST_MAP), _in(AST), _in(AST)))
Implementation
void ast_map_insert(
Z3_context c,
Z3_ast_map m,
Z3_ast k,
Z3_ast v,
) {
return _ast_map_insert(
c,
m,
k,
v,
);
}