-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Both the name of and the docs for MaybeUninit::uninit_array()
make what it actually does somewhat unclear
#66845
Comments
IIUC you assumed Maybe the "in an uninitialized state" is ambiguous as to whether it refers to the array or the elements though. |
Couldn't help myself while fixing rust-lang#66845.
Couldn't help myself while fixing rust-lang#66845.
You don't have to look at the source for that, the type is right there in the docs. :) |
Couldn't help myself while fixing rust-lang#66845.
remove `MaybeUninit::uninit_array` Closes rust-lang#134584. Closes rust-lang#66845. The future of this unstable method was described in rust-lang#125082 (comment). Since `inline_const` was stabilized in 1.79 (4 stable releases away) and no one expressed interest for keeping it in rust-lang#96097, I think it can be removed now as it is not a stable method.
Rollup merge of rust-lang#134585 - cyrgani:uninit_array, r=Amanieu remove `MaybeUninit::uninit_array` Closes rust-lang#134584. Closes rust-lang#66845. The future of this unstable method was described in rust-lang#125082 (comment). Since `inline_const` was stabilized in 1.79 (4 stable releases away) and no one expressed interest for keeping it in rust-lang#96097, I think it can be removed now as it is not a stable method.
remove `MaybeUninit::uninit_array` Closes rust-lang#134584. Closes rust-lang#66845. The future of this unstable method was described in rust-lang#125082 (comment). Since `inline_const` was stabilized in 1.79 (4 stable releases away) and no one expressed interest for keeping it in rust-lang#96097, I think it can be removed now as it is not a stable method.
remove `MaybeUninit::uninit_array` Closes rust-lang#134584. Closes rust-lang#66845. The future of this unstable method was described in rust-lang#125082 (comment). Since `inline_const` was stabilized in 1.79 (4 stable releases away) and no one expressed interest for keeping it in rust-lang#96097, I think it can be removed now as it is not a stable method.
Basically, based on the name of the function, and also the part of the docs for it that says:
Create a new array of MaybeUninit<T> items, in an uninitialized state.
I initially had the impression that it internally amounted to:
MaybeUninit::<[MaybeUninit<T>; LEN]>::uninit()
and returned an uninitialized array of uninitialized MaybeUninits.
However, after looking at the source, I realized it actually amounts to:
MaybeUninit::<[MaybeUninit<T>; LEN]>::uninit().assume_init()
and returns an initialized array of uninitialized MaybeUninits (which is what I actually needed, so that's good at least!)
The text was updated successfully, but these errors were encountered: