-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Tracking issue for VecDeque Extras #27788
Copy link
Copy link
Closed
Labels
B-unstableBlocker: Implemented in the nightly compiler and unstable.Blocker: Implemented in the nightly compiler and unstable.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.final-comment-periodIn the final comment period and will be merged soon unless new substantive objections are raised.In the final comment period and will be merged soon unless new substantive objections are raised.
Milestone
Metadata
Metadata
Assignees
Labels
B-unstableBlocker: Implemented in the nightly compiler and unstable.Blocker: Implemented in the nightly compiler and unstable.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.final-comment-periodIn the final comment period and will be merged soon unless new substantive objections are raised.In the final comment period and will be merged soon unless new substantive objections are raised.
Type
Fields
Give feedbackNo fields configured for issues without a type.
This covers the
deque_extrasblanket feature, which should probably be sharded more in the future. It covers:truncateresizeas_slicesas_mut_slicesswap_back_removeswap_front_removeSome notes:
truncateandresizeare strange because they aren't directional (they just truncate off the back). Need work.as_slicesandas_mut_slicesseem good to go. A bit niche, but so is VecDeque. Maybe move themutto the end. RFC'd and everything.swap_back_removeandswap_front_removealso seem good to go. Maybe move the directional specifier to the end. RFC'd and everything.