2 instantiations of SetWithInsertionOrder
Microsoft.CodeAnalysis.CodeStyle (2)
src\Compilers\Core\Portable\InternalUtilities\OrderedMultiDictionary.cs (2)
28? set : new SetWithInsertionOrder<V>(); 44set = new SetWithInsertionOrder<V>();
8 references to SetWithInsertionOrder
Microsoft.CodeAnalysis.CodeStyle (8)
src\Compilers\Core\Portable\InternalUtilities\OrderedMultiDictionary.cs (8)
11internal sealed class OrderedMultiDictionary<K, V> : IEnumerable<KeyValuePair<K, SetWithInsertionOrder<V>>> 14private readonly Dictionary<K, SetWithInsertionOrder<V>> _dictionary; 22public SetWithInsertionOrder<V> this[K k] 26SetWithInsertionOrder<V>? set; 34_dictionary = new Dictionary<K, SetWithInsertionOrder<V>>(); 40SetWithInsertionOrder<V>? set; 60public IEnumerator<KeyValuePair<K, SetWithInsertionOrder<V>>> GetEnumerator() 64yield return new KeyValuePair<K, SetWithInsertionOrder<V>>(