CollectionFactory icon indicating copy to clipboard operation
CollectionFactory copied to clipboard

🏭 Translation between native collections in Objective-C and serialized formats like JSON.

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

https://github.com/elliotchance/CollectionFactory/blob/d146492e71177e981d94c20d03692ee40e6780dd/CollectionFactory/CollectionFactory.m#L11 When NOT using CRLF as a readDelimiter, passing a single "\r\n" pair to the socket passes this test (i.e. != nil and .length == 2), but then gets trimmed...

There are some other native collection types that do not have the categories for the functionality

CollectionFactory does a lot of this stuff internally, but they should be exposed so that people can check types, test if properties exist etc

Something that could be done with a loop: ``` objc NSArray *objs = ... NSMutableArray *decoded = [NSMutableArray new]; for (NSDictionary *obj in objs) { [decoded addObject:[SomeObject objectWith...]]; } ```...

Adding optional value transformers would be nice for wrangling unpredictable types.