stats_is_uint method
\brief Return \c true if the given statistical data is a unsigned integer.
\pre idx < Z3_stats_size(c, s)
def_API('Z3_stats_is_uint', BOOL, (_in(CONTEXT), _in(STATS), _in(UINT)))
Implementation
bool stats_is_uint(
Z3_context c,
Z3_stats s,
int idx,
) {
return _stats_is_uint(
c,
s,
idx,
);
}