9 references to IListCalls
Microsoft.CodeAnalysis.Collections.Package (9)
Segmented\ImmutableSegmentedList`1+Builder.cs (9)
30
bool IList.IsFixedSize =>
IListCalls
.IsFixedSize(ref _builder);
32
bool IList.IsReadOnly =>
IListCalls
.IsReadOnly(ref _builder);
46
get =>
IListCalls
.GetItem(ref _builder, index);
47
set =>
IListCalls
.SetItem(ref _builder, index, value);
233
=>
IListCalls
.Add(ref _builder, value);
236
=>
IListCalls
.Contains(ref _builder, value);
239
=>
IListCalls
.IndexOf(ref _builder, value);
242
=>
IListCalls
.Insert(ref _builder, index, value);
245
=>
IListCalls
.Remove(ref _builder, value);