is_quantifier_forall method
\brief Determine if an ast is a universal quantifier.
def_API('Z3_is_quantifier_forall', BOOL, (_in(CONTEXT), _in(AST)))
Implementation
bool is_quantifier_forall(
Z3_context c,
Z3_ast a,
) {
return _is_quantifier_forall(
c,
a,
);
}