-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Box<[T]> should have an IntoIter implementation. #59878
Copy link
Copy link
Closed
Labels
A-iteratorsArea: IteratorsArea: IteratorsA-maybe-future-editionSomething we may consider for a future edition.Something we may consider for a future edition.C-feature-requestCategory: A feature request, i.e: not implemented / a PR.Category: A feature request, i.e: not implemented / a PR.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
A-iteratorsArea: IteratorsArea: IteratorsA-maybe-future-editionSomething we may consider for a future edition.Something we may consider for a future edition.C-feature-requestCategory: A feature request, i.e: not implemented / a PR.Category: A feature request, i.e: not implemented / a PR.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Projects
Status
Needs help: Impl
Right now the only way to move out of a
Box<[T]>is usinginto_vec, which is a bit inconvenient. Is there any reasonBox<[T]>shouldn't implementIntoIter?