6 references to ICollectionCalls
Microsoft.CodeAnalysis (6)
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2+Builder.cs (2)
49bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly => ICollectionCalls<KeyValuePair<TKey, TValue>>.IsReadOnly(ref _builder); 126=> ICollectionCalls<KeyValuePair<TKey, TValue>>.CopyTo(ref _builder, array, arrayIndex);
src\Dependencies\Collections\Segmented\ImmutableSegmentedHashSet`1+Builder.cs (3)
36bool ICollection<T>.IsReadOnly => ICollectionCalls<T>.IsReadOnly(ref _builder); 118=> ICollectionCalls<T>.Add(ref _builder, item); 121=> ICollectionCalls<T>.CopyTo(ref _builder, array, arrayIndex);
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+Builder.cs (1)
28bool ICollection<T>.IsReadOnly => ICollectionCalls<T>.IsReadOnly(ref _builder);