18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#import "OFCharacterSet_bitset.h"
#import "OFString.h"
#import "OFOutOfRangeException.h"
@implementation OFCharacterSet_bitset
- (instancetype)initWithCharactersInString: (OFString *)string
{
self = [super init];
@try {
void *pool = objc_autoreleasePoolPush();
const of_unichar_t *characters = [string characters];
|
>
>
>
>
>
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#import "OFCharacterSet_bitset.h"
#import "OFString.h"
#import "OFOutOfRangeException.h"
@implementation OFCharacterSet_bitset
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithCharactersInString: (OFString *)string
{
self = [super init];
@try {
void *pool = objc_autoreleasePoolPush();
const of_unichar_t *characters = [string characters];
|