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

Borrowing mutable vector subslices #3745

Closed
erickt opened this issue Oct 12, 2012 · 2 comments
Closed

Borrowing mutable vector subslices #3745

erickt opened this issue Oct 12, 2012 · 2 comments
Labels
A-lifetimes Area: Lifetimes / regions
Milestone

Comments

@erickt
Copy link
Contributor

erickt commented Oct 12, 2012

We are moving away from &[mut T] types towards mutable reference slots, like &mut ~[T]. This works great for functions like vec::push<T>(v: &mut ~[T], initval: T), which modify the length of the vector, but I don't believe we have a clear strategy to upgrading vec::raw::memcpy, which can be used to update a subset of a vector. I think we might need two separate types to capture this functionality.

@nikomatsakis
Copy link
Contributor

I believe the intention was to keep &[mut T] for such cases, possibly spelled &mut [T] (note the absence of the ~)

@nikomatsakis
Copy link
Contributor

Closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lifetimes Area: Lifetimes / regions
Projects
None yet
Development

No branches or pull requests

2 participants