Argo
Argo copied to clipboard
Functional JSON parsing library for Swift
let's see if I can keep up with these easier than I can with Circle (which has broken yet again)
This is to follow-up the [PR][] that removed `
Previously, we've used a special operator (`
We're going to be shifting the marketing focus for Argo away from being a JSON parser and towards being a general purpose parser for transforming loosely typed data models into...
I've finally gotten some time to work on this, and I'd like to push forward with solving the naming conflict between `Swift.Decodable` and `Argo.Decodable`. I've also opened up #473 to...
I'm trying to convert some code to use Argo, and I'm getting stuck where the existing code uses subclasses. I can't get type inference to pass. If anyone knows how...
### Sample JSON ``` { "aggregations": { "my_aggregation": { "value": 9 } } } ``` ### Models ``` let int: Decoded = json
Related: #284 Our use of `Alternative` is something that sticks out to me as being insanely powerful, but we don't talk about it ever. We should add some documentation around...
It'd be dope if we could automatically generate project documentation (via Jazzy probably?) as a part of the release process and add it to the `web` directory so that we...
I'm attempting to parse an API that uses arrays of strings to represent an option's various settings. It seems natural to try and parse this as a type conforming to...