10 references to Add
Microsoft.CodeAnalysis (3)
ImmutableSegmentedHashSet.cs (2)
19
=> ImmutableSegmentedHashSet<T>.Empty.
Add
(item);
31
=> ImmutableSegmentedHashSet<T>.Empty.WithComparer(equalityComparer).
Add
(item);
ImmutableSegmentedHashSet`1.cs (1)
279
=>
Add
(value);
Microsoft.CodeAnalysis.UnitTests (7)
Collections\ImmutableSegmentedHashSetBuilderTest.cs (2)
55
var set = ImmutableSegmentedHashSet<int>.Empty.
Add
(1);
103
var collection = ImmutableSegmentedHashSet<int>.Empty.
Add
(1);
Collections\ImmutableSegmentedHashSetTest.cs (5)
48
.
Add
("apple")
49
.
Add
("APPLE");
62
.
Add
("apple")
63
.
Add
("APPLE");
85
var collection = ImmutableSegmentedHashSet.Create<int>().
Add
(5);