OSX compatibility iprovement.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28528 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-08-24 07:07:36 +00:00
parent 4e94a49ba8
commit e7db98165f
4 changed files with 57 additions and 19 deletions

View file

@ -709,6 +709,14 @@ typedef NSUInteger NSStringEncodingConversionOptions;
#endif
#if OS_API_VERSION(100500,GS_API_LATEST)
/**
* Returns YES when scanning the receiver's text from left to right
* finds an initial digit in the range 1-9 or a letter in the set
* ('Y', 'y', 'T', 't').<br />
* Any trailing characters are ignored.<br />
* Any leading whitespace or zeros or signs are also ignored.<br />
* Returns NO if the above conditions are not met.
*/
- (BOOL) boolValue;
- (NSArray *) componentsSeparatedByCharactersInSet: (NSCharacterSet *)separator;
- (NSInteger) integerValue;