You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Float scalar type represents signed double‐precision fractional values as specified by IEEE 754. Response formats that support an appropriate double‐precision number type should use that type to represent this scalar.
It only specifies that it has to be IEEE 754, nothing about 32 vs 64-bit.
- if value type is explicitly `float32`, return `float32`
- if value type is explicitly `float64`, return `float64`
- if value type is `string`, return `float64`
- for everything else, use system-default
Addresses issue #130
There surely will be cases that need better precision or number range. Just want to know if there's any concern not using Float64 here.
The text was updated successfully, but these errors were encountered: