This repository has been archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 190
/
NSArray+ObjectiveSugar.m
232 lines (175 loc) · 6.01 KB
/
NSArray+ObjectiveSugar.m
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
//
// NSArray+ObjectiveSugar.m
// WidgetPush
//
// Created by Marin Usalj on 5/7/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "NSArray+ObjectiveSugar.h"
#import "NSMutableArray+ObjectiveSugar.h"
#import "NSString+ObjectiveSugar.h"
static NSString * const OSMinusString = @"-";
@implementation NSArray (ObjectiveSugar)
- (id)sample {
if (self.count == 0) return nil;
NSUInteger index = arc4random_uniform((u_int32_t)self.count);
return self[index];
}
- (id)objectForKeyedSubscript:(id)key {
if ([key isKindOfClass:[NSString class]])
return [self subarrayWithRange:[self rangeFromString:key]];
else if ([key isKindOfClass:[NSValue class]])
return [self subarrayWithRange:[key rangeValue]];
else
[NSException raise:NSInvalidArgumentException format:@"expected NSString or NSValue argument, got %@ instead", [key class]];
return nil;
}
- (NSRange)rangeFromString:(NSString *)string {
NSRange range = NSRangeFromString(string);
if ([string containsString:@"..."]) {
range.length = isBackwardsRange(string) ? (self.count - 2) - range.length : range.length - range.location;
} else if ([string containsString:@".."]) {
range.length = isBackwardsRange(string) ? (self.count - 1) - range.length : range.length - range.location + 1;
}
return range;
}
- (void)each:(void (^)(id object))block {
[self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
block(obj);
}];
}
- (void)eachWithIndex:(void (^)(id object, NSUInteger index))block {
[self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
block(obj, idx);
}];
}
- (void)each:(void (^)(id object))block options:(NSEnumerationOptions)options {
[self enumerateObjectsWithOptions:options usingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
block(obj);
}];
}
- (void)eachWithIndex:(void (^)(id object, NSUInteger index))block options:(NSEnumerationOptions)options {
[self enumerateObjectsWithOptions:options usingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
block(obj, idx);
}];
}
- (BOOL)includes:(id)object {
return [self containsObject:object];
}
- (NSArray *)take:(NSUInteger)numberOfElements {
return [self subarrayWithRange:NSMakeRange(0, MIN(numberOfElements, [self count]))];
}
- (NSArray *)takeWhile:(BOOL (^)(id object))block {
NSMutableArray *array = [NSMutableArray array];
for (id arrayObject in self) {
if (block(arrayObject))
[array addObject:arrayObject];
else break;
}
return array;
}
- (NSArray *)map:(id (^)(id object))block {
NSMutableArray *array = [NSMutableArray arrayWithCapacity:self.count];
for (id object in self) {
[array addObject:block(object) ?: [NSNull null]];
}
return array;
}
- (NSArray *)select:(BOOL (^)(id object))block {
return [self filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
return block(evaluatedObject);
}]];
}
- (NSArray *)reject:(BOOL (^)(id object))block {
return [self filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
return !block(evaluatedObject);
}]];
}
- (id)detect:(BOOL (^)(id object))block {
for (id object in self) {
if (block(object))
return object;
}
return nil;
}
- (id)find:(BOOL (^)(id object))block {
return [self detect:block];
}
- (NSArray *)flatten {
NSMutableArray *array = [NSMutableArray array];
for (id object in self) {
if ([object isKindOfClass:NSArray.class]) {
[array concat:[object flatten]];
} else {
[array addObject:object];
}
}
return array;
}
- (NSArray *)compact {
return [self select:^BOOL(id object) {
return object != [NSNull null];
}];
}
- (NSString *)join {
return [self componentsJoinedByString:@""];
}
- (NSString *)join:(NSString *)separator {
return [self componentsJoinedByString:separator];
}
- (NSArray *)sort {
return [self sortedArrayUsingSelector:@selector(compare:)];
}
- (NSArray *)sortBy:(NSString*)key; {
NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:key ascending:YES];
return [self sortedArrayUsingDescriptors:@[descriptor]];
}
- (NSArray *)reverse {
return self.reverseObjectEnumerator.allObjects;
}
- (id)reduce:(id (^)(id accumulator, id object))block {
return [self reduce:nil withBlock:block];
}
- (id)reduce:(id)initial withBlock:(id (^)(id accumulator, id object))block {
id accumulator = initial;
for(id object in self)
accumulator = accumulator ? block(accumulator, object) : object;
return accumulator;
}
- (NSArray *)unique
{
return [[NSOrderedSet orderedSetWithArray:self] array];
}
#pragma mark - Set operations
- (NSArray *)intersectionWithArray:(NSArray *)array {
NSPredicate *intersectPredicate = [NSPredicate predicateWithFormat:@"SELF IN %@", array];
return [self filteredArrayUsingPredicate:intersectPredicate];
}
- (NSArray *)unionWithArray:(NSArray *)array {
NSArray *complement = [self relativeComplement:array];
return [complement arrayByAddingObjectsFromArray:array];
}
- (NSArray *)relativeComplement:(NSArray *)array {
NSPredicate *relativeComplementPredicate = [NSPredicate predicateWithFormat:@"NOT SELF IN %@", array];
return [self filteredArrayUsingPredicate:relativeComplementPredicate];
}
- (NSArray *)symmetricDifference:(NSArray *)array {
NSArray *aSubtractB = [self relativeComplement:array];
NSArray *bSubtractA = [array relativeComplement:self];
return [aSubtractB unionWithArray:bSubtractA];
}
#pragma mark - Private
static inline BOOL isBackwardsRange(NSString *rangeString) {
return [rangeString containsString:OSMinusString];
}
#pragma mark - Aliases
- (id)anyObject {
return [self sample];
}
- (id)first DEPRECATED_ATTRIBUTE {
return [self firstObject];
}
- (id)last DEPRECATED_ATTRIBUTE {
return [self lastObject];
}
@end