14 references to ImmutableSegmentedList
Microsoft.CodeAnalysis.CodeStyle (14)
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (6)
76
public static readonly ImmutableSegmentedList<T> Empty =
new
(new SegmentedList<T>());
148
return new
ImmutableSegmentedList
<T>(list);
177
return new
ImmutableSegmentedList
<T>(list);
209
=> new
ImmutableSegmentedList
<TOutput>(_list.ConvertAll(converter));
232
=> new
ImmutableSegmentedList
<T>(_list.FindAll(match));
300
return new
ImmutableSegmentedList
<T>(self._list.GetRange(index, count));
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+PrivateMarshal.cs (4)
26
return new
ImmutableSegmentedList
<T>(list);
35
return new
ImmutableSegmentedList
<T>(list);
44
return new
ImmutableSegmentedList
<T>(list);
49
=> list is not null ? new
ImmutableSegmentedList
<T>(list) : default;
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+ValueBuilder.cs (4)
126
=> new
ImmutableSegmentedList
<TOutput>(ReadOnlyList.ConvertAll(converter));
144
=> new
ImmutableSegmentedList
<T>(ReadOnlyList.FindAll(match));
196
return new
ImmutableSegmentedList
<T>(ReadOnlyList.GetRange(index, count));
327
_list = new
ImmutableSegmentedList
<T>(ReadOnlyList);