elliotchance / elliotchance/CollectionFactory
Support for parsing a collection of collections
Open
- Dominant language
- Objective-C
- Stars
- 41
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
Something that could be done with a loop:
``` objc
NSArray *objs = ...
NSMutableArray *decoded = [NSMutableArray new];
for (NSDictionary *obj in objs) {
[decoded addObject:[SomeObject objectWith...]];
}
```
Can be simplified to something like:
``` objc
NSArray *objs = ...
NSArray *decoded = [SomeObject objectsWith...: objs];
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.