Mac@programming.dev to Rust@programming.dev · 3 months agoAnnouncing Rust 1.80.0blog.rust-lang.orgexternal-linkmessage-square6fedilinkarrow-up170arrow-down10
arrow-up170arrow-down1external-linkAnnouncing Rust 1.80.0blog.rust-lang.orgMac@programming.dev to Rust@programming.dev · 3 months agomessage-square6fedilink
minus-squareRusty 🦀 Femboy 🏳️🌈@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up1·3 months agoIt’s really nice how you can now iterate over a boxed slice using for x in &y rather than being forced to use for x in y.iter().
It’s really nice how you can now iterate over a boxed slice using
for x in &y
rather than being forced to usefor x in y.iter()
.