1 write to _set
Microsoft.CodeAnalysis (1)
InternalUtilities\SetWithInsertionOrder.cs (1)
26
_set
= new HashSet<T>();
8 references to _set
Microsoft.CodeAnalysis (8)
InternalUtilities\SetWithInsertionOrder.cs (8)
24
if (
_set
== null)
30
if (!
_set
.Add(value))
41
if (
_set
== null)
51
if (!
_set
.Add(value))
62
_set
.Remove(value);
71
if (
_set
is null)
76
if (!
_set
.Remove(value))
86
public bool Contains(T value) =>
_set
?.Contains(value) ?? false;