nifty@lemmy.world to Programmer Humor@programming.dev · 9 months agoStop using floatslemmy.worldimagemessage-square79fedilinkarrow-up1770
arrow-up1770imageStop using floatslemmy.worldnifty@lemmy.world to Programmer Humor@programming.dev · 9 months agomessage-square79fedilink
minus-squarePsythik@lemmy.worldlinkfedilinkarrow-up14·9 months agoWhile we’re at it, what the hell is -0 and how does it differ from 0?
minus-squarecomputerscientistI@lemm.eelinkfedilinkarrow-up2·9 months agoFor integers it really doesn’t exist. An algorithm for multiplying an integer with -1 is: Invert all bits and add 1 to the right-most bit. You can do that for 0 of course, it won’t hurt.
While we’re at it, what the hell is -0 and how does it differ from 0?
For integers it really doesn’t exist. An algorithm for multiplying an integer with -1 is: Invert all bits and add 1 to the right-most bit. You can do that for 0 of course, it won’t hurt.