mk_set_union method

Z3_ast mk_set_union(
  1. Z3_context c,
  2. int num_args,
  3. Pointer<Z3_ast> args
)

\brief Take the union of a list of sets.

def_API('Z3_mk_set_union', AST, (_in(CONTEXT), _in(UINT), _in_array(1, AST)))

Implementation

Z3_ast mk_set_union(
  Z3_context c,
  int num_args,
  ffi.Pointer<Z3_ast> args,
) {
  return _mk_set_union(
    c,
    num_args,
    args,
  );
}