]> git.saurik.com Git - apple/security.git/blob - CircleJoinRequested/NSArray+map.h
Security-59306.80.4.tar.gz
[apple/security.git] / CircleJoinRequested / NSArray+map.h
1 //
2 // NSArray+map.h
3 // Security
4 //
5 // Created by J Osborne on 3/8/13.
6 // Copyright (c) 2013 Apple Inc. All Rights Reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 typedef id (^mapBlock)(id obj);
12
13 @interface NSArray (map)
14 -(NSArray*)mapWithBlock:(mapBlock)block;
15 @end