mk_select_n method
\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,
);
}