float_repr
Show the exact binary64 storage of any number: raw bits, ULP, neighboring values, and representability. Warns when integers exceed 2^53 and lose distinction.
Instructions
What binary64 actually stores for X: exact value, raw bits, ULP, both
neighbours, and whether the literal is representable. float_repr(0.1)
shows 0.1000000000000000055511151231257827...; float_repr(0.25) says
EXACT. Above 2^53 warns consecutive integers are indistinguishable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||