Skip to content

Tracking issue for vec_try_remove #77481

Closed
@ohsayan

Description

@ohsayan

Motivation

The current implementation of Vec::remove(idx) panics if the element at idx is not present. Vec::try_remove(idx) checks if the element at idx exists; If it does, it returns the element as Some(T); otherwise it returns None. This can be helpful when a panic is expected while removing an element from a given idx.

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

  • Initial implementation (Add try_remove to Vec #77480)
    • Implement try_remove
    • Re-implement remove in terms of try_remove
    • Add tests
  • Adjust documentation
  • Stabilization PR

Metadata

Metadata

Assignees

No one assigned

    Labels

    A-collectionsArea: `std::collections`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.requires-nightlyThis issue requires a nightly compiler in some way.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions