get_sort_kind method
\brief Return the sort kind (e.g., array, tuple, int, bool, etc).
\sa Z3_sort_kind
def_API('Z3_get_sort_kind', UINT, (_in(CONTEXT), _in(SORT)))
Implementation
int get_sort_kind(
Z3_context c,
Z3_sort t,
) {
return _get_sort_kind(
c,
t,
);
}