-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
So my current problem is definition of hexadecimal number system. The specs say:
Hexadecimal numbers contain the literal characters 0x or 0X that may be prefixed with an optional plus or minus sign, which must be followed by one or more hexadecimal digits.
So if I have the string value
positiveHex: 0xFFDECAFFEEDDEEDD
does that mean it stores
-
15991963345402650367
-
-2454780728306901249
-
-3.011212125377999e+144
-
18437397125074382557
-
-9346948635169059
-
-8.649422920012688e+307
or maybe something else?