Chad Austin

Results 38 comments of Chad Austin

Hi! Unfortunately I don't have access to any public code that uses the library, but maybe @aeidelson could sanitize and share some. `guard case` sounds fine to me though -...

@aeidelson If you'd like, feel free! @own2pwn do you have any input into how you'd prefer decoder functions be written?

Thought about it a bit: I like the idea of extending to have getters something like: ``` extension sajson_swift.Value { var string: String? func string(withDefault: String) -> String // and...

Hi @aggsol -- the only conformance issues are around the precision of very large and very small doubles, and when I looked into this last it looked like the only...

Hi @own2pwn. sajson itself does not support 64-bit integers, but it would be possible to add support for it. The reason I haven't is that many (most?) people shy away...

Got it. I can look into adding 64-bit into support to sajson, but I probably won't have time for a bit. If you or someone else wants to take a...

Do you care about 32-bit platforms? 64-bit only would make the change easier. On Wed, Oct 18, 2017 at 12:20 PM Chad Austin wrote: > Got it. I can look...

Double gives you 53 bits of precision of in the mantissa, but if you need the full 64 bits, it's not good enough. The way sajson encodes its AST has...