Re: [swift-corelibs-dev] JSONDecoder has too few opportunities. need an enhancement.

2017-11-09 Thread Norio Nomura via swift-corelibs-dev
Hi Vladimir, FYI, I also wanted to decode directly from NSDictionary and NSArray, so I made https://github.com/norio-nomura/ObjectEncoder. It is a simpler implementation than JSONEncoder/JSONDecoder because it does not contain any functions to treat specific type specially. 2017-11-10 1:37 GMT+09

Re: [swift-corelibs-dev] Swift CI will be down for maintenance - Nov 9th 2017 - 11am PST

2017-11-09 Thread Mishal Shah via swift-corelibs-dev
Maintenance completed. Thanks, Mishal Shah > On Nov 9, 2017, at 12:32 PM, Mishal Shah wrote: > > Maintenance started. > > >> On Nov 8, 2017, at 12:42 PM, Mishal Shah > > wrote: >> >> We will be taking down ci.swift.org for maintenance >

Re: [swift-corelibs-dev] Swift CI will be down for maintenance - Nov 9th 2017 - 11am PST

2017-11-09 Thread Mishal Shah via swift-corelibs-dev
Maintenance started. > On Nov 8, 2017, at 12:42 PM, Mishal Shah wrote: > > We will be taking down ci.swift.org for maintenance > tomorrow Nov 9th 2017 at 11am PST to update the Xcode. Please avoid > triggering pull request testing during the maintenance. > > Xcode 9.

[swift-corelibs-dev] JSONDecoder has too few opportunities. need an enhancement.

2017-11-09 Thread Vladimir Kushelkov via swift-corelibs-dev
1. Sometimes it is contently to be able to decode a struct or an object from a Foundation object (either NSArray or NSDictionary) that produce a valid JSON. For example, if I use a 3d party library that provides NSDictionary to me. Due to JSONDecoder decodes only from Data, in the first place I h