ast_map_insert method

void ast_map_insert(
  1. Z3_context c,
  2. Z3_ast_map m,
  3. Z3_ast k,
  4. Z3_ast v,
)

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