ISO@lemmy.zip to Rust@programming.dev · 3 days ago"AI" audit of rust stdlibgithub.comexternal-linkmessage-square7linkfedilinkarrow-up11arrow-down10file-text
arrow-up11arrow-down1external-link"AI" audit of rust stdlibgithub.comISO@lemmy.zip to Rust@programming.dev · 3 days agomessage-square7linkfedilinkfile-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-up0·3 days 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.