8 references to IDictionaryCalls
Microsoft.CodeAnalysis.CodeStyle (8)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Builder.cs (8)
53bool IDictionary.IsReadOnly => IDictionaryCalls.IsReadOnly(ref _builder); 55bool IDictionary.IsFixedSize => IDictionaryCalls.IsFixedSize(ref _builder); 69get => IDictionaryCalls.GetItem(ref _builder, key); 70set => IDictionaryCalls.SetItem(ref _builder, key, value); 133=> IDictionaryCalls.Contains(ref _builder, key); 136=> IDictionaryCalls.Add(ref _builder, key, value); 139=> IDictionaryCalls.GetEnumerator(ref _builder); 142=> IDictionaryCalls.Remove(ref _builder, key);