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