Giving Rust a chance for in-kernel codecs
Giving Rust a chance for in-kernel codecs
Posted Apr 27, 2024 16:30 UTC (Sat) by dwlsalmeida (subscriber, #144268)In reply to: Giving Rust a chance for in-kernel codecs by dvdeug
Parent article: Giving Rust a chance for in-kernel codecs
The Rust compiler will optimize away bound checks if it can prove that they are not needed through static analysis. You can also opt out of bound checks but that has to go into an unsafe{} block, see https://doc.rust-lang.org/std/vec/struct.Vec.html#method....
