Mac to Rust · 10 个月前Announcing Rust 1.80.0blog.rust-lang.orgexternal-linkmessage-square6linkfedilinkarrow-up171arrow-down10
arrow-up171arrow-down1external-linkAnnouncing Rust 1.80.0blog.rust-lang.orgMac to Rust · 10 个月前message-square6linkfedilink
minus-squareRusty 🦀 Femboy 🏳️🌈@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up1·10 个月前It’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()
.