Live data from Hacker News

Faster floating point math with Rust's new API

pythonspeed.com

1–2 of 2 posts

Re: Faster floating point math with Rust's new API

#2
Signed integer addition is only associative when overflow is defined to wrap around like unsigned arithmetic. This condition is matched here, because only debug builds panic on overflow. However, it's a bit of a gray area that the article completely ignores.