is_string method

bool is_string(
  1. Z3_context c,
  2. Z3_ast s
)

\brief Determine if \c s is a string constant.

def_API('Z3_is_string', BOOL, (_in(CONTEXT), _in(AST)))

Implementation

bool is_string(
  Z3_context c,
  Z3_ast s,
) {
  return _is_string(
    c,
    s,
  );
}