stats_get_key method
\brief Return the key (a string) for a particular statistical data.
\pre idx < Z3_stats_size(c, s)
def_API('Z3_stats_get_key', STRING, (_in(CONTEXT), _in(STATS), _in(UINT)))
Implementation
Z3_string stats_get_key(
Z3_context c,
Z3_stats s,
int idx,
) {
return _stats_get_key(
c,
s,
idx,
);
}