Created
May 28, 2013 19:34
-
-
Save casademora/5665451 to your computer and use it in GitHub Desktop.
Simple each: category on NSArray, or NSSet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void) mgp_each:(void(^)(id))objectMap; | |
{ | |
[self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { | |
objectMap(obj); | |
}]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment