19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#import "OFString.h"
#import "OFXMLElement.h"
#import "OFData.h"
#import "OFInvalidArgumentException.h"
@interface OFNull ()
- (OFString *)of_JSONRepresentationWithOptions: (int)options
depth: (size_t)depth;
@end
static OFNull *null = nil;
@implementation OFNull
+ (void)initialize
{
|
|
>
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#import "OFString.h"
#import "OFXMLElement.h"
#import "OFData.h"
#import "OFInvalidArgumentException.h"
@interface OFNull ()
- (OFString *)
of_JSONRepresentationWithOptions: (OFJSONRepresentationOptions)options
depth: (size_t)depth;
@end
static OFNull *null = nil;
@implementation OFNull
+ (void)initialize
{
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
}
- (OFString *)JSONRepresentation
{
return [self of_JSONRepresentationWithOptions: 0 depth: 0];
}
- (OFString *)JSONRepresentationWithOptions: (int)options
{
return [self of_JSONRepresentationWithOptions: options depth: 0];
}
- (OFString *)of_JSONRepresentationWithOptions: (int)options
depth: (size_t)depth
{
return @"null";
}
- (OFData *)messagePackRepresentation
{
|
|
>
|
>
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
}
- (OFString *)JSONRepresentation
{
return [self of_JSONRepresentationWithOptions: 0 depth: 0];
}
- (OFString *)JSONRepresentationWithOptions:
(OFJSONRepresentationOptions)options
{
return [self of_JSONRepresentationWithOptions: options depth: 0];
}
- (OFString *)
of_JSONRepresentationWithOptions: (OFJSONRepresentationOptions)options
depth: (size_t)depth
{
return @"null";
}
- (OFData *)messagePackRepresentation
{
|