Ability to JSON serialize and deserialize int64 with precision in R
问题 In R, Int64 whole numbers can not be accurately serialized to and from JSON, because existing JSON libraries will coerce the value into a numeric, or expect to represent the number in scientific notation. Does anyone know of a way to accurately serialize and deserialize whole Int64 numbers to/from JSON with precision, or is a library modification (probably to RJSONIO) required? The full story, including libraries I have tried so far, and the gacky workarounds necessary for the interim: >