SkillAgentSearch skills...

Momentum

Momentum is a collection of objective c classes and categories that extends NSArray and NSMutableArray with declarative-style in-memory query and set operations.

Install / Use

/learn @randolphcabral/Momentum
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Momentum

Momentum is a collection of objective c classes and categories that extends NSArray and NSMutableArray with declarative-style in-memory query and set operations.

Usage

Drop the files into your project and #include. Make changes to the files as you need. All I ask is that you share your updates with me.

Sample

NSMutableArray * strings = [[NSMutableArray alloc] initWithObjects:@"ken", @"jane", @"james", @"ivan", @"randy", nil];
[[strings 
    where:(id)^(id string) { return [string isEqualToString:@"james"] || [string isEqualToString:@"ken"]; }]
    forin:^(id string) { NSLog(@"%@", string); }];

Related Skills

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated9y ago
Forks0

Languages

Objective-C

Security Score

55/100

Audited on Jun 6, 2016

No findings