mk_seq_last_index method

Z3_ast mk_seq_last_index(
  1. Z3_context c,
  2. Z3_ast s,
  3. Z3_ast substr
)

\brief Return index of the last occurrence of \c substr in \c s. If \c s does not contain \c substr, then the value is -1, def_API('Z3_mk_seq_last_index', AST, (_in(CONTEXT), _in(AST), _in(AST)))

Implementation

Z3_ast mk_seq_last_index(
  Z3_context c,
  Z3_ast s,
  Z3_ast substr,
) {
  return _mk_seq_last_index(
    c,
    s,
    substr,
  );
}