get_decl_parameter_kind method

int get_decl_parameter_kind(
  1. Z3_context c,
  2. Z3_func_decl d,
  3. int idx
)

\brief Return the parameter type associated with a declaration.

\param c the context \param d the function declaration \param idx is the index of the named parameter it should be between 0 and the number of parameters.

def_API('Z3_get_decl_parameter_kind', UINT, (_in(CONTEXT), _in(FUNC_DECL), _in(UINT)))

Implementation

int get_decl_parameter_kind(
  Z3_context c,
  Z3_func_decl d,
  int idx,
) {
  return _get_decl_parameter_kind(
    c,
    d,
    idx,
  );
}