mk_seq_length method

Z3_ast mk_seq_length(
  1. Z3_context c,
  2. Z3_ast s
)

\brief Return the length of the sequence \c s.

def_API('Z3_mk_seq_length', AST ,(_in(CONTEXT), _in(AST)))

Implementation

Z3_ast mk_seq_length(
  Z3_context c,
  Z3_ast s,
) {
  return _mk_seq_length(
    c,
    s,
  );
}