param_descrs_get_documentation method

Z3_string param_descrs_get_documentation(
  1. Z3_context c,
  2. Z3_param_descrs p,
  3. Z3_symbol s
)

\brief Retrieve documentation string corresponding to parameter name \c s.

def_API('Z3_param_descrs_get_documentation', STRING, (_in(CONTEXT), _in(PARAM_DESCRS), _in(SYMBOL)))

Implementation

Z3_string param_descrs_get_documentation(
  Z3_context c,
  Z3_param_descrs p,
  Z3_symbol s,
) {
  return _param_descrs_get_documentation(
    c,
    p,
    s,
  );
}