mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
([NSNumber -description]): New method.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@961 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6e2fc7f944
commit
cd4cb5279b
1 changed files with 8 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
/* NSNumber - Object encapsulation of numbers
|
||||
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
Date: Mar 1995
|
||||
Created: Mar 1995
|
||||
|
||||
This file is part of the GNU Objective C Class Library.
|
||||
|
||||
|
@ -269,5 +269,10 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
@end
|
||||
- description
|
||||
{
|
||||
/* xxx This could be better integrated into concrete subclasses. */
|
||||
return [NSString stringWithFormat: @"%d", [self intValue]];
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue