1 write to _store
Microsoft.CodeAnalysis.UnitTests (1)
InternalUtilities\ConcurrentLruCacheTests.cs (1)
29
_store
= new KeyValuePair<K, V>[capacity];
3 references to _store
Microsoft.CodeAnalysis.UnitTests (3)
InternalUtilities\ConcurrentLruCacheTests.cs (3)
34
return ((IEnumerable<KeyValuePair<K, V>>)
_store
).GetEnumerator();
44
return new ConcurrentLruCache<K, V>(
_store
);
49
_store
[_index++] = new KeyValuePair<K, V>(key, value);