ISO@lemmy.zip to Rust@programming.dev · 1 month ago"AI" audit of rust stdlibgithub.comexternal-linkmessage-square8linkfedilinkarrow-up115arrow-down13file-text
arrow-up112arrow-down1external-link"AI" audit of rust stdlibgithub.comISO@lemmy.zip to Rust@programming.dev · 1 month agomessage-square8linkfedilinkfile-text
I checked some of the issues out, and this looks legit. Although a good chuck relates to obscure platform abstractions.
minus-squareISO@lemmy.zipOPlinkfedilinkarrow-up4·1 month agoThe new Iter struct basically mirrors slice’s Iter, but with poiners/pointer arithmetic used for everything (the new next() impl). PhantomData is used in both to track the lifetime of the data pointer.
The new
Iterstruct basically mirrors slice’s Iter, but with poiners/pointer arithmetic used for everything (the newnext()impl).PhantomDatais used in both to track the lifetime of the data pointer.