6 references to ICollectionCalls
Microsoft.CodeAnalysis (6)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Builder.cs (2)
47bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly => ICollectionCalls<KeyValuePair<TKey, TValue>>.IsReadOnly(ref _builder); 124=> ICollectionCalls<KeyValuePair<TKey, TValue>>.CopyTo(ref _builder, array, arrayIndex);
src\Dependencies\Collections\ImmutableSegmentedHashSet`1+Builder.cs (3)
34bool ICollection<T>.IsReadOnly => ICollectionCalls<T>.IsReadOnly(ref _builder); 116=> ICollectionCalls<T>.Add(ref _builder, item); 119=> ICollectionCalls<T>.CopyTo(ref _builder, array, arrayIndex);
src\Dependencies\Collections\ImmutableSegmentedList`1+Builder.cs (1)
26bool ICollection<T>.IsReadOnly => ICollectionCalls<T>.IsReadOnly(ref _builder);