Displaying 1 result from an estimated 1 matches for "bigint1".
Did you mean:
bigint
2013 Aug 29
0
Big Integer Support in JSON-to-R Conversion
...y a character
representation for all nodes inside the JSON string, such that:
> fromJSON(json.str)
would result in:
$bigInt
[1] "123456789123456789"
However, it looks like the 'stringFun' is only applied to the character
string nodes within the JSON:
>
fromJSON('{"bigInt1":123456789123456789,"bigInt2":"123456789123456789"}',stringFun=function(x)
class(x))
$bigInt1
[1] 123456789123456784
$bigInt2
[1] "character"
I think there might be some promise to the 'handler' object, but I'm having
trouble interpreting how to...