Skip to content

Instantly share code, notes, and snippets.

@tralamazza
Created February 20, 2012 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tralamazza/1869552 to your computer and use it in GitHub Desktop.
Save tralamazza/1869552 to your computer and use it in GitHub Desktop.
nsarray additions
@implementation NSArray (Mehdditions)
- (NSArray*) filter:(BOOL (^)(id)) block {
NSMutableArray* result = [NSMutableArray new];
for (id item in self)
if (block(item))
[result addObject:item];
return result;
}
- (NSArray*) map:(id (^)(id)) block {
NSMutableArray* result = [NSMutableArray new];
for (id item in self)
[result addObject:block(item)];
return result;
}
- (id) reduce:(id) value block:(id (^)(id, id)) aBlock {
id result = value;
for (id item in self)
result = aBlock(result, item);
return result;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment