ast_map_contains method

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

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