1 write to _dictionary
Test.Utilities (1)
PooledConcurrentSet.cs (1)
25
_dictionary
= dictionary;
9 references to _dictionary
Test.Utilities (9)
PooledConcurrentSet.cs (9)
29
public void Free(CancellationToken cancellationToken) =>
_dictionary
.Free(cancellationToken);
52
public int Count =>
_dictionary
.Count;
57
public bool IsEmpty =>
_dictionary
.IsEmpty;
66
public bool Add(T value) =>
_dictionary
.TryAdd(value, 0);
87
public bool Remove(T item) =>
_dictionary
.TryRemove(item, out _);
92
public void Clear() =>
_dictionary
.Clear();
97
public bool Contains(T item) =>
_dictionary
.ContainsKey(item);
110
return new KeyEnumerator(
_dictionary
);
118
foreach (var kvp in
_dictionary
)