mk_seq_contains method

Z3_ast mk_seq_contains(
  1. Z3_context c,
  2. Z3_ast container,
  3. Z3_ast containee
)

\brief Check if \c container contains \c containee.

\pre \c container and \c containee are the same sequence sorts.

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

Implementation

Z3_ast mk_seq_contains(
  Z3_context c,
  Z3_ast container,
  Z3_ast containee,
) {
  return _mk_seq_contains(
    c,
    container,
    containee,
  );
}