1 package net.mograsim.logic.model.verilog.utils;
3 import java.util.HashSet;
6 public class CollectionsUtils
8 private CollectionsUtils()
12 public static <E> Set<E> union(Set<E> a, Set<E> b)
14 Set<E> union = new HashSet<>();
17 return Set.copyOf(union);