Closed jcaesar closed 2 years ago
Necessary for writing code like
let mut modify: Punctuated<T> = …; for (v, _p) in modify.iter_mut() { *v = …; }
(My current workaround is to clone everything, modify, push it to a new punctuated, and then replace the old punctuated.)
Necessary for writing code like
(My current workaround is to clone everything, modify, push it to a new punctuated, and then replace the old punctuated.)