top | item 46679501

(no title)

rwaksmunski | 1 month ago

Every Rust SIMD article should mention the .chunks_exact() auto vectorization trick by law.

discuss

order

ChadNauseam|1 month ago

Didn't know about this. Thanks!

Not related, but I often want to see the next or previous element when I'm iterating. When that happens, I always have to switch to an index-based loop. Is there a function that returns Iter<Item=(T, Option<T>)> where the second element is a lookahead?

rwaksmunski|1 month ago

I use the slice::windows for that.