param_descrs_to_string method
\brief Convert a parameter description set into a string. This function is mainly used for printing the contents of a parameter description set.
def_API('Z3_param_descrs_to_string', STRING, (_in(CONTEXT), _in(PARAM_DESCRS)))
Implementation
Z3_string param_descrs_to_string(
Z3_context c,
Z3_param_descrs p,
) {
return _param_descrs_to_string(
c,
p,
);
}