Float Repr
float_reprInspect any number's binary64 representation to see its exact stored value, raw bits, ULP, neighboring floats, and whether the literal is representable or rounded.
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 | Value to inspect as binary64: exact stored value, raw bits, ULP, neighbours, and representability |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||