Jacob Williams
Jacob Williams
C API
Consider adding a C API to make it easier to create/get/set json_value linked lists from other programming languages.
Matrices
Add `get` routines for getting matrices (integer, real, etc.) from json files and objects. This could be used, for example, to easily get a variable like: ``` json { "matrix":...
Note: the CI is currently only testing Gfortran 7, 8, 9, 10. There are various "hacks" in the code to deal with bugs in earlier Gfortran compilers (the library used...
`print_to_string` is quite slow for very large data sets. Probably there is room for improvement.
Other possible flavors to support: * NDJSON https://github.com/ndjson/ndjson-spec * JSON Text Sequences https://tools.ietf.org/html/rfc7464 * JSON Lines http://jsonlines.org Note: I think we can currently write these fine (just use a loop...
Fixes #405
Consider adding optional support for the JSON5 extension. http://json5.org/
Probably some of the workarounds in the code for gfortran bugs have been fixed. Look into make these conditional for specific versions that are known to have the bug. Is...
Originally, when I was creating this code by updating the old FSON code, I made the data in `json_value` polymorphic. But, I had to get rid of that at the...