Hacker News new | ask | show | jobs
by gldrk 182 days ago
Given how heavily most C programs lean on type erasure vs. monomorphization and how often they reimplement basic data structures, it's kind of a miracle they hold up against Rust/C++.
1 comments

Why? Monomorphization often leads to great results in microbenchmarks due to super-specialized code but also to bloat.