ast_map_contains method
\brief Return true if the map \c m contains the AST key \c k.
def_API('Z3_ast_map_contains', BOOL, (_in(CONTEXT), _in(AST_MAP), _in(AST)))
Implementation
bool ast_map_contains(
Z3_context c,
Z3_ast_map m,
Z3_ast k,
) {
return _ast_map_contains(
c,
m,
k,
);
}