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
At the moment if gojson encounters a natural JSON number it converts it into an int. This isn't always desirable, because sometimes gojson is going to encounter a resource like:
{ "foo": 2.0 }
or
[{ "foo": 2 }, {"foo": 2.3 }]
In both cases gojson will define the JSON numbers in the results type as int.
The text was updated successfully, but these errors were encountered:
At the moment if
gojson
encounters a natural JSON number it converts it into anint
. This isn't always desirable, because sometimesgojson
is going to encounter a resource like:or
In both cases
gojson
will define the JSON numbers in the results type asint
.The text was updated successfully, but these errors were encountered: