this post was submitted on 05 Aug 2023
501 points (92.1% liked)
Programmer Humor
27264 readers
576 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 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Makes sense, how would you represent
floor(1e42) orceil(1e120)as integer? It would not fit into 32bit (unsigned) or 31bit (signed) integer. Not even into 64bit integer.BigInt (yeah, not native everywhere)
I feel this is worse than double though because it's a library type rather than a basic type but I guess ceil and floor are also library functions unlike toInt