this post was submitted on 26 Feb 2024
757 points (95.8% liked)
Programmer Humor
19471 readers
1122 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Well, not every time. Only if I do a division or get an
ieee_754_f64
from the outside world. That doesn't happen terribly often in the applications I've worked on.And if it does go wrong, I do want it to explode right then and there. Worst case would be, if it writes random
NaN
s into some database and no one knows where they came from.As for your suggestion with the slash accepting
Result
s, yeah, that could resolve some pain, but I've rarely seen multiple divisions being necessary back-to-back and I don't want people passing around aResult<f64>
in the codebase. Then you can't see where it went wrong anymore either.So, personally, I wouldn't put that division operator into the stdlib, but having it available as a library, if someone needs it, would be cool, yeah.