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)
34return ((IEnumerable<KeyValuePair<K, V>>)_store).GetEnumerator(); 44return new ConcurrentLruCache<K, V>(_store); 49_store[_index++] = new KeyValuePair<K, V>(key, value);