func_entry_get_num_args method

int func_entry_get_num_args(
  1. Z3_context c,
  2. Z3_func_entry e
)

\brief Return the number of arguments in a \c Z3_func_entry object.

\sa Z3_func_entry_get_arg \sa Z3_func_interp_get_entry

def_API('Z3_func_entry_get_num_args', UINT, (_in(CONTEXT), _in(FUNC_ENTRY)))

Implementation

int func_entry_get_num_args(
  Z3_context c,
  Z3_func_entry e,
) {
  return _func_entry_get_num_args(
    c,
    e,
  );
}