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