13 references to ImmutableSegmentedList
Microsoft.Build.Framework (13)
ImmutableSegmentedList`1.cs (6)
74
public static readonly ImmutableSegmentedList<T> Empty =
new
(new SegmentedList<T>());
146
return new
ImmutableSegmentedList
<T>(list);
175
return new
ImmutableSegmentedList
<T>(list);
207
=> new
ImmutableSegmentedList
<TOutput>(_list.ConvertAll(converter));
230
=> new
ImmutableSegmentedList
<T>(_list.FindAll(match));
298
return new
ImmutableSegmentedList
<T>(self._list.GetRange(index, count));
ImmutableSegmentedList`1+PrivateInterlocked.cs (3)
23
return new
ImmutableSegmentedList
<T>(list);
32
return new
ImmutableSegmentedList
<T>(list);
41
return new
ImmutableSegmentedList
<T>(list);
ImmutableSegmentedList`1+ValueBuilder.cs (4)
124
=> new
ImmutableSegmentedList
<TOutput>(ReadOnlyList.ConvertAll(converter));
142
=> new
ImmutableSegmentedList
<T>(ReadOnlyList.FindAll(match));
194
return new
ImmutableSegmentedList
<T>(ReadOnlyList.GetRange(index, count));
325
_list = new
ImmutableSegmentedList
<T>(ReadOnlyList);