mk_seq_extract method

Z3_ast mk_seq_extract(
  1. Z3_context c,
  2. Z3_ast s,
  3. Z3_ast offset,
  4. Z3_ast length,
)

\brief Extract subsequence starting at \c offset of \c length.

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

Implementation

Z3_ast mk_seq_extract(
  Z3_context c,
  Z3_ast s,
  Z3_ast offset,
  Z3_ast length,
) {
  return _mk_seq_extract(
    c,
    s,
    offset,
    length,
  );
}