We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd59cc commit aeaf220Copy full SHA for aeaf220
src/StructLinq.BCL/List/ListEnumerable.cs
@@ -7,14 +7,12 @@ namespace StructLinq.BCL.List
7
{
8
public struct ListEnumerable<T> : IStructCollection<T, ArrayStructEnumerator<T>>
9
10
- private readonly List<T> list;
11
private readonly ListLayout<T> layout;
12
private int count;
13
private int start;
14
15
internal ListEnumerable(List<T> list, int start, int count)
16
17
- this.list = list;
18
layout = Unsafe.As<List<T>, ListLayout<T>>(ref list);
19
this.count = count;
20
this.start = start;
0 commit comments