-
Notifications
You must be signed in to change notification settings - Fork 1
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
Investigate using Span<char> for tokenizer/readers etc #66
Comments
See if this can help dotnet/aspnetcore#46098 |
Also, see this dotnet/aspnetcore#49714. Although not sure we'll be able to use this in netstandard |
So the issue here is that ReadOnlySpan cannot be used in an iterator block Need to investigate if greedy parsing of every line using ReadOnlySpan is more efficient than lazy parsing using string. |
So just converting to ReadOnlySpan and using slice ToString makes no difference
|
For netstandard2.0 support use System.Memory
The text was updated successfully, but these errors were encountered: