reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
54 ImmutableSet<int> S2 = f.add(S, 3); 55 EXPECT_TRUE(S.isEmpty()); 57 EXPECT_FALSE(S == S2); 58 EXPECT_TRUE(S != S2); 59 EXPECT_FALSE(S.contains(3)); 64 ImmutableSet<int> S3 = f.add(S, 2); 65 EXPECT_TRUE(S.isEmpty()); 67 EXPECT_FALSE(S == S3); 68 EXPECT_TRUE(S != S3); 69 EXPECT_FALSE(S.contains(2));