float_repr
Inspect the binary64 representation of a float: exact stored value, raw bits, ULP, and neighbors. Verify if the input is exactly representable, with warnings for large integers.
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 |