mirror of
https://github.com/mickael-menu/zk
synced 2024-11-19 03:25:40 +00:00
470 B
470 B
Zero-cost abstractions in Rust
Zero-cost abstractions is a term touted (coined?) by Rust-enthusiasts. It means that using higher-level features such as map
, filter
, iterators
, etc. has no performance downsides. They get compiled to the same code we would write by hand with a for
loop.
Reference
:programming:rust: