painlessjson icon indicating copy to clipboard operation
painlessjson copied to clipboard

D library for converting any custom types to and from JSON the painless way.

Results 6 painlessjson issues
Sort by recently updated
recently updated
newest added

From following the forum I get the sense that [orange](https://github.com/jacob-carlborg/orange) will likely to be included in phobos at some point as the default (de)serialization library. We should look into what...

To add support for other formats we will have to separate the conversion code from the JSON-specific things. I see two potentially viable ways of doing it: An intermediate format...

I started using painlessjson but because of #36 moved to jsonizer - but since #36 got fixed I was trying to move back to painlessjson - however there a few...

Using https://github.com/Zalastax/zalastaxlibd/blob/master/source/notnull.d to wrap types that shouldn't be null is not supported unless the wrapped type implements _fromJSON. fromJSON!(NotNull!(int[])) should be possible to call. I have no idea how this...

enhancement

(This is just a note to remind us to add such a test).

I don't think we can handle subclasses right now. This is how Jackson solves it: http://wiki.fasterxml.com/JacksonPolymorphicDeserialization I'm not sure how this should be implemented since we use CTFE. My idea...