Changeset 5124
- Timestamp:
- 12/13/07 15:05:21 (7 months ago)
- Files:
-
- WiredAdditions/trunk/NSString-WIAdditions.h (modified) (1 diff)
- WiredAdditions/trunk/NSString-WIAdditions.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredAdditions/trunk/NSString-WIAdditions.h
r4960 r5124 43 43 - (unsigned long long)unsignedLongLongValue; 44 44 - (unsigned int)unsignedIntValue; 45 - (NSUInteger)unsignedIntegerValue; 45 46 46 47 - (BOOL)containsSubstring:(NSString *)string; WiredAdditions/trunk/NSString-WIAdditions.m
r5102 r5124 105 105 - (unsigned int)unsignedIntValue { 106 106 return (unsigned int) [self intValue]; 107 } 108 109 110 111 - (NSUInteger)unsignedIntegerValue { 112 return (NSUInteger) [self integerValue]; 107 113 } 108 114
