-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add support for Span<T> #8
Comments
More research on this: |
span support added |
Any plans to support |
|
@BrunoZell if you could open a new issue for that? It seems a bit (related but) tangential to this one |
We should add support for Span, which would allow the use of these functions on stackalloc arrays and other memory sources. If we targeted only .NET 2.0 we could change the function signatures of all methods taking arrays to Spans, but if we want to support .NET Framework and Core 1.0 we need to duplicate every array function, and make a Span version.
As well, performance opportunities may exist if we use stackalloc arrays when appropriate inside our implementations.
The text was updated successfully, but these errors were encountered: