is_lambda method

bool is_lambda(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Determine if ast is a lambda expression.

\pre Z3_get_ast_kind(a) == Z3_QUANTIFIER_AST

def_API('Z3_is_lambda', BOOL, (_in(CONTEXT), _in(AST)))

Implementation

bool is_lambda(
  Z3_context c,
  Z3_ast a,
) {
  return _is_lambda(
    c,
    a,
  );
}