documented functions, types, constants, and variables

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19797 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
arobert 2004-07-29 15:30:47 +00:00
parent afbec3abfe
commit eca63cb414
39 changed files with 1010 additions and 116 deletions

View file

@ -342,7 +342,7 @@
@end
/*
/**
* Cache info for internal use by NSNumber concrete subclasses.
*/
typedef struct {
@ -350,10 +350,12 @@ typedef struct {
void (*getValue)(NSNumber*, SEL, void*);
} GSNumberInfo;
/** Internal method for caching. */
GSNumberInfo *GSNumberInfoFromObject(NSNumber *o);
#define GS_SMALL 16
/*
* Get cached values for integers in the range -GS_SMALL to +GS_SMALL
/**
* Internal method: get cached values for integers in the range
* - GS_SMALL to + GS_SMALL
*/
unsigned GSSmallHash(int n);
#endif