@interface NSMutableCharacterSet : NSCharacterSet <NSCopying, NSMutableCopying>
|
// Instance Methods |
- (void)addCharactersInRange:(NSRange)aRange;
|
- (void)addCharactersInString:(NSString *)aString;
|
- (void)formIntersectionWithCharacterSet:(NSCharacterSet *)otherSet;
|
- (void)formUnionWithCharacterSet:(NSCharacterSet *)otherSet;
|
- (void)invert;
|
- (void)removeCharactersInRange:(NSRange)aRange;
|
- (void)removeCharactersInString:(NSString *)aString;
|
// Methods Implementing NSCopying |
- (id)copyWithZone:(NSZone *)zone;
|
// Methods Implementing NSMutableCopying |
- (id)mutableCopyWithZone:(NSZone *)zone;
|