6 references to ICollectionCalls
Microsoft.CodeAnalysis.Collections.Package (6)
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);
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);
Segmented\ImmutableSegmentedList`1+Builder.cs (1)
28bool ICollection<T>.IsReadOnly => ICollectionCalls<T>.IsReadOnly(ref _builder);