5 references to SegmentedList
Microsoft.CodeAnalysis (3)
SegmentedList`1.cs (2)
365var list = new SegmentedList<TOutput>(_size); 627var 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)
42SegmentedList<T> list = new SegmentedList<T>(capacity); 53Assert.Throws<ArgumentOutOfRangeException>(() => new SegmentedList<T>(capacity));