zk/tests/fixtures/full-sample/zbon.md
2022-01-10 14:28:14 +01:00

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: