SetOperationsTest.java | 258 Set<String> friends; field in class:SetOperationsTest.MoreTests 262 friends = Sets.newHashSet("Tom", "Joe", "Dave"); 267 Set<String> all = Sets.union(friends, enemies); 270 ImmutableSet<String> immut = Sets.union(friends, enemies).immutableCopy(); 272 = Sets.union(friends, enemies).copyInto(new HashSet<String>()); 281 Set<String> friends = Sets.newHashSet("Tom", "Joe", "Dave"); local 284 Set<String> frenemies = Sets.intersection(friends, enemies); 288 = Sets.intersection(friends, enemies).immutableCopy(); 290 = Sets.intersection(friends, enemies).copyInto(new HashSet<String>()); 299 Set<String> friends = Sets.newHashSet("Tom", "Joe", "Dave") local 317 Set<String> friends = Sets.newHashSet("Tom", "Joe", "Dave"); local [all...] |