| ▲ | Faster floating point math with Rust's new API(pythonspeed.com) | |
| 13 points by subset 18 hours ago | 1 comments | ||
| ▲ | GeertB 12 hours ago | parent [-] | |
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. | ||