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
As described from PR #470, float parsing cases below are normal:
(3.14159265358979).to_d.to_s# => "3.14159265358979"(-273.150000000).to_d.to_s# => "-273.15"# and without the round bracket3.14159265358979.to_d.to_s# => "3.14159265358979"
However, there is a case when a negative valued float type number cannot call method without round bracket
-273.150000000.to_d.to_s# ERROR
The text was updated successfully, but these errors were encountered:
As described from PR #470, float parsing cases below are normal:
However, there is a case when a negative valued float type number cannot call method without round bracket
The text was updated successfully, but these errors were encountered: