mk_seq_nth method

Z3_ast mk_seq_nth(
  1. Z3_context c,
  2. Z3_ast s,
  3. Z3_ast index
)

\brief Retrieve from \c s the element positioned at position \c index. The function is under-specified if the index is out of bounds.

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

Implementation

Z3_ast mk_seq_nth(
  Z3_context c,
  Z3_ast s,
  Z3_ast index,
) {
  return _mk_seq_nth(
    c,
    s,
    index,
  );
}