is_char_sort method
\brief Check if \c s is a character sort.
def_API('Z3_is_char_sort', BOOL, (_in(CONTEXT), _in(SORT)))
Implementation
bool is_char_sort(
Z3_context c,
Z3_sort s,
) {
return _is_char_sort(
c,
s,
);
}
\brief Check if \c s is a character sort.
def_API('Z3_is_char_sort', BOOL, (_in(CONTEXT), _in(SORT)))
bool is_char_sort(
Z3_context c,
Z3_sort s,
) {
return _is_char_sort(
c,
s,
);
}