Tracking issue for vec_try_remove
#77481
Labels
A-collections
Area: `std::collection`
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
requires-nightly
This issue requires a nightly compiler in some way.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Motivation
The current implementation of
Vec::remove(idx)
panics if the element atidx
is not present.Vec::try_remove(idx)
checks if the element atidx
exists; If it does, it returns the element asSome(T)
; otherwise it returnsNone
. This can be helpful when a panic is expected while removing an element from a givenidx
.About tracking issues
Tracking issues are used to record the overall progress of implementation.
They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions.
A tracking issue is however not meant for large scale discussion, questions, or bug reports about a feature.
Instead, open a dedicated issue for the specific matter and add the relevant feature gate label.
Tasks
try_remove
toVec
#77480)try_remove
remove
in terms oftry_remove
The text was updated successfully, but these errors were encountered: