forked from BlocksKit/BlocksKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNSMutableArray+BlocksKit.h
More file actions
50 lines (36 loc) · 1.31 KB
/
Copy pathNSMutableArray+BlocksKit.h
File metadata and controls
50 lines (36 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// NSMutableArray+BlocksKit.h
// %PROJECT
//
#import "BKGlobals.h"
/** Block extensions for NSMutableArray.
These utilities expound upon the BlocksKit additions
to the immutable superclass by allowing certain utilities
to work on an instance of the mutable class, saving memory
by not creating an immutable copy of the results.
Includes code by the following:
- Martin Schürrer. <https://github.com/MSch>. 2011. MIT.
- Zach Waldowski. <https://github.com/zwaldowski>. 2011. MIT.
@see NSArray(BlocksKit)
*/
@interface NSMutableArray (BlocksKit)
/** Filters a mutable array to the objects matching the block.
@param block A single-argument, BOOL-returning code block.
@see reject:
*/
- (void)performSelect:(BKValidationBlock)block;
/** Filters a mutable array to all objects but the ones matching the block,
the logical inverse to select:.
@param block A single-argument, BOOL-returning code block.
@see select:
*/
- (void)performReject:(BKValidationBlock)block;
/** Transform the objects in the array to the results of the block.
This is sometimes referred to as a transform, mutating one of each object:
[foo map:^id(id obj) {
return [dateTransformer dateFromString:obj];
}];
@param block A single-argument, object-returning code block.
*/
- (void)performMap:(BKTransformBlock)block;
@end