Implemented interface members:
11 references to Contains
Microsoft.CodeAnalysis (8)
ImmutableSegmentedHashSet`1.cs (1)
93
=> _set.
Contains
(value);
ImmutableSegmentedHashSet`1+Builder.cs (3)
101
=> ReadOnlySet.
Contains
(item);
147
if (!ReadOnlySet.
Contains
(item))
243
if (ReadOnlySet.
Contains
(item))
SegmentedHashSet`1.cs (4)
713
if (
Contains
(element))
1109
if (!
Contains
(element))
1132
if (!other.
Contains
(item))
1154
if (!other.
Contains
(item))
Microsoft.CodeAnalysis.UnitTests (3)
Collections\HashSet\SegmentedHashSet_IEnumerable_NonGeneric_Tests.cs (1)
62
while (set.
Contains
(ret))
Collections\List\TestBase.Generic.cs (2)
243
while (set.
Contains
(toAdd) || (match != null && match.Contains(toAdd, GetIEqualityComparer()))) // Don't want any unexpectedly duplicate values
254
actualMatchingCount += set.
Contains
(lookingFor) ? 1 : 0;