We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Box<huge array> has a known problem: it creates the value on the stack first.
Box<huge array>
try_new(t: T) also need to consume the value from somewhere - and that would be from stack.
try_new(t: T)
Is it possible to add an API to create an uninitialized array in Box, and not allocate its value on stack first?
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Box<huge array>
has a known problem: it creates the value on the stack first.try_new(t: T)
also need to consume the value from somewhere - and that would be from stack.Is it possible to add an API to create an uninitialized array in Box, and not allocate its value on stack first?
Thank you!
The text was updated successfully, but these errors were encountered: