static Set initHashSetAndAdd(Set set, A a) { if (set == null) set = new HashSet; set.add(a); ret set; }