ast_map_find method

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

\brief Return the value associated with the key \c k.

The procedure invokes the error handler if \c k is not in the map.

def_API('Z3_ast_map_find', AST, (_in(CONTEXT), _in(AST_MAP), _in(AST)))

Implementation

Z3_ast ast_map_find(
  Z3_context c,
  Z3_ast_map m,
  Z3_ast k,
) {
  return _ast_map_find(
    c,
    m,
    k,
  );
}