func_interp_get_arity method
\brief Return the arity (number of arguments) of the given function interpretation.
def_API('Z3_func_interp_get_arity', UINT, (_in(CONTEXT), _in(FUNC_INTERP)))
Implementation
int func_interp_get_arity(
Z3_context c,
Z3_func_interp f,
) {
return _func_interp_get_arity(
c,
f,
);
}