get_domain_size method
\brief Return the number of parameters of the given declaration.
\sa Z3_get_arity
def_API('Z3_get_domain_size', UINT, (_in(CONTEXT), _in(FUNC_DECL)))
Implementation
int get_domain_size(
Z3_context c,
Z3_func_decl d,
) {
return _get_domain_size(
c,
d,
);
}