5 references to SegmentedList
Microsoft.CodeAnalysis (3)
SegmentedList`1.cs (2)
365
var list = new
SegmentedList
<TOutput>(_size);
627
var list = new
SegmentedList
<T>(count);
Serialization\ObjectReader.cs (1)
322
= new(() => new
SegmentedList
<T>(20));
Microsoft.CodeAnalysis.UnitTests (2)
Collections\List\SegmentedList.Generic.Tests.Constructor.cs (2)
42
SegmentedList<T> list = new
SegmentedList
<T>(capacity);
53
Assert.Throws<ArgumentOutOfRangeException>(() => new
SegmentedList
<T>(capacity));