Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up some usages of LowLevelList<T> #105407

Merged
merged 10 commits into from
Jul 26, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void Add(T item)
}

#if NET
public readonly Span<T> AsSpan(int start) => _items.AsSpan(start);
public readonly Span<T> AsSpan(int start) => _items.AsSpan(start, _count);
huoyaoyuan marked this conversation as resolved.
Show resolved Hide resolved

public Span<T> AppendSpan(int length)
{
Expand Down
Loading