elliotchance / elliotchance/CollectionFactory

Support for parsing a collection of collections

Open
#20 0 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.