9 references to IListCalls
Microsoft.Build.Framework (9)
ImmutableSegmentedList`1+Builder.cs (9)
28
bool IList.IsFixedSize =>
IListCalls
.IsFixedSize(ref _builder);
30
bool IList.IsReadOnly =>
IListCalls
.IsReadOnly(ref _builder);
44
get =>
IListCalls
.GetItem(ref _builder, index);
45
set =>
IListCalls
.SetItem(ref _builder, index, value);
231
=>
IListCalls
.Add(ref _builder, value);
234
=>
IListCalls
.Contains(ref _builder, value);
237
=>
IListCalls
.IndexOf(ref _builder, value);
240
=>
IListCalls
.Insert(ref _builder, index, value);
243
=>
IListCalls
.Remove(ref _builder, value);