You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
We are moving away from
&[mut T]
types towards mutable reference slots, like&mut ~[T]
. This works great for functions likevec::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 upgradingvec::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.The text was updated successfully, but these errors were encountered: