Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@theabbie yeah, but I still think it's a really clever way to deal with numbers where maybe you need scale but not precision. Also, it has specific encodings for infinity and NaN. It's just so packed with cool stuff in comparison to the very linear and boring integer
-
I like some of the big number support in boost for c++:
https://boost.org/doc/libs/...
When you need 128 bit or more floats or 1024 bit integers. -
@Demolishun I've had enough CS for today but I'll come back to this rant in the future and read that
Reading up on how floats are stored and it's pretty cool how you can store numbers as large as 3.4×10^38 in the same amount of memory that an integer can store only about 2 billion.
Absolutely wonderful
random