-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPathKit.h
47 lines (37 loc) · 855 Bytes
/
PathKit.h
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
//
// PathKit
// Copyright(c) 2011 Afanasy Kurakin <[email protected]>
// BSD Licensed
//
#import <Foundation/Foundation.h>
@interface NSArray (PathKit)
- (id)get:(id)path;
@end
@interface NSMutableArray (PathKit)
- (void)post:path this:(id)value;
- (void)delete:(id)path;
- (void)merge:(id)value;
@end
@interface NSDictionary (PathKit)
- (id)get:(id)path;
@end
@interface NSMutableDictionary (PathKit)
- (void)post:(NSString*)pathString this:(id)value;
- (void)delete:(id)pathString;
- (void)merge:(id)value;
@end
@interface NSNull (deepMutableCopy)
- (id)deepMutableCopy;
@end
@interface NSNumber (deepMutableCopy)
- (id)deepMutableCopy;
@end
@interface NSString (deepMutableCopy)
- (id)deepMutableCopy;
@end
@interface NSArray (deepMutableCopy)
- (id)deepMutableCopy;
@end
@interface NSDictionary (deepMutableCopy)
- (id)deepMutableCopy;
@end