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

Both the name of and the docs for MaybeUninit::uninit_array() make what it actually does somewhat unclear #66845

Closed
slightlyoutofphase opened this issue Nov 28, 2019 · 2 comments · Fixed by #134585
Labels
A-array Area: `[T; N]` A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools C-enhancement Category: An issue proposing an enhancement or a PR with one. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@slightlyoutofphase
Copy link
Contributor

slightlyoutofphase commented Nov 28, 2019

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!)

@jonas-schievink jonas-schievink added C-enhancement Category: An issue proposing an enhancement or a PR with one. A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. labels Nov 28, 2019
@workingjubilee workingjubilee added the A-array Area: `[T; N]` label Mar 7, 2023
@hkBst
Copy link
Member

hkBst commented Feb 7, 2025

IIUC you assumed MaybeUninit<[MaybeUninit<T>; N]> as output, but the documented output is [MaybeUninit<T>; N]. I don't think MaybeUninit<[MaybeUninit<T>; N]> is a useful type as an array really is nothing more than its elements, so if those are uninitialized, then the array is already uninitialized as a whole, since there is nothing else besides the elements.

Maybe the "in an uninitialized state" is ambiguous as to whether it refers to the array or the elements though.

hkBst added a commit to hkBst/rust that referenced this issue Feb 7, 2025
Couldn't help myself while fixing rust-lang#66845.
hkBst added a commit to hkBst/rust that referenced this issue Feb 9, 2025
Couldn't help myself while fixing rust-lang#66845.
@RalfJung
Copy link
Member

However, after looking at the source,

You don't have to look at the source for that, the type is right there in the docs. :)

hkBst added a commit to hkBst/rust that referenced this issue Feb 21, 2025
Couldn't help myself while fixing rust-lang#66845.
fmease added a commit to fmease/rust that referenced this issue Feb 26, 2025
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.
@bors bors closed this as completed in bcfff3d Feb 26, 2025
rust-timer added a commit to rust-lang-ci/rust that referenced this issue Feb 26, 2025
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.
github-actions bot pushed a commit to tautschnig/verify-rust-std that referenced this issue Mar 11, 2025
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.
github-actions bot pushed a commit to tautschnig/verify-rust-std that referenced this issue Mar 11, 2025
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-array Area: `[T; N]` A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools C-enhancement Category: An issue proposing an enhancement or a PR with one. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants