get_decl_func_decl_parameter method
\brief Return the expression value associated with an expression parameter.
\pre Z3_get_decl_parameter_kind(c, d, idx) == Z3_PARAMETER_FUNC_DECL
def_API('Z3_get_decl_func_decl_parameter', FUNC_DECL, (_in(CONTEXT), _in(FUNC_DECL), _in(UINT)))
Implementation
Z3_func_decl get_decl_func_decl_parameter(
Z3_context c,
Z3_func_decl d,
int idx,
) {
return _get_decl_func_decl_parameter(
c,
d,
idx,
);
}