packedjson icon indicating copy to clipboard operation
packedjson copied to clipboard

packedjson is an alternative Nim implementation for JSON. The JSON is essentially kept as a single string in order to save memory over a more traditional tree representation.

Results 1 packedjson issues
Sort by recently updated
recently updated
newest added

``` import packedjson var cost = newJObject() var rows = [["AWS","compute"],["AWS","network"],["Alibaba","compute"],["Alibaba","network"]] for row in rows: cost{row[0],row[1]} = %(cost{row[0],row[1]}.getFloat + 1.0) echo cost ``` change packedjson to json to see the...

bug