mk_select_n method

Z3_ast mk_select_n(
  1. Z3_context c,
  2. Z3_ast a,
  3. int n,
  4. Pointer<Z3_ast> idxs,
)

\brief n-ary Array read. The argument \c a is the array and \c idxs are the indices of the array that gets read.

def_API('Z3_mk_select_n', AST, (_in(CONTEXT), _in(AST), _in(UINT), _in_array(2, AST)))

Implementation

Z3_ast mk_select_n(
  Z3_context c,
  Z3_ast a,
  int n,
  ffi.Pointer<Z3_ast> idxs,
) {
  return _mk_select_n(
    c,
    a,
    n,
    idxs,
  );
}