Searched refs:firstMinusSecond (Results 1 – 1 of 1) sorted by relevance
239 Set<String> firstMinusSecond = new LinkedHashSet<String>(); in showVennSets() local241 vennSets(zoneSet, zonesInMetazones, common, firstMinusSecond, secondMinusFirst); in showVennSets()243 …if (!firstMinusSecond.isEmpty()) System.out.println("A - B:\t" + firstMinusSecond.size() + "\t" + … in showVennSets()248 Set<T> common, Set<T> firstMinusSecond, Set<T> secondMinusFirst) { in vennSets() argument252 firstMinusSecond.clear(); in vennSets()253 firstMinusSecond.addAll(first); in vennSets()254 firstMinusSecond.removeAll(common); in vennSets()