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
Let's say I've a floating point value "4.0". When it's dumped to disk using .dump() it's being written as just "4". So, the type of the value goes from float to int when I read the data back using parse().
Please describe the steps to reproduce the issue. Can you provide a small but working code example?
Bug Report
Let's say I've a floating point value "4.0". When it's dumped to disk using
.dump()
it's being written as just "4". So, the type of the value goes fromfloat
toint
when I read the data back usingparse()
.The output:
The
.dump()
should not drop the trailing ".0".The
.dump()
drops the trailing.0
.Apple LLVM version 7.3.0 (clang-703.0.31)
develop
branch?Release version.
The text was updated successfully, but these errors were encountered: