CacheDictionary.st
changeset 2700 b480eda50a6a
parent 1126 0ca4b7558465
child 3209 bed5afb12dcf
equal deleted inserted replaced
2699:0848b8b6a294 2700:b480eda50a6a
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libbasic2' }"
    12 "{ Package: 'stx:libbasic2' }"
    14 
    13 
    15 Dictionary subclass:#CacheDictionary
    14 Dictionary subclass:#CacheDictionary
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
   115             keyArray basicAt:delIndex put:nil.
   114             keyArray basicAt:delIndex put:nil.
   116             valueArray basicAt:delIndex put:nil.
   115             valueArray basicAt:delIndex put:nil.
   117             tally := tally - 1.
   116             tally := tally - 1.
   118             ^ delIndex
   117             ^ delIndex
   119         ].
   118         ].
   120 
       
   121     ]
   119     ]
   122 
   120 
   123     "Modified: 1.3.1997 / 00:59:55 / cg"
   121     "Modified: / 01-03-1997 / 00:59:55 / cg"
       
   122     "Modified (format): / 26-12-2011 / 10:42:08 / cg"
   124 !
   123 !
   125 
   124 
   126 fullCheck
   125 fullCheck
   127     "redefined - never grow"
   126     "redefined - never grow"
   128 
   127 
   132 ! !
   131 ! !
   133 
   132 
   134 !CacheDictionary class methodsFor:'documentation'!
   133 !CacheDictionary class methodsFor:'documentation'!
   135 
   134 
   136 version
   135 version
   137     ^ '$Header: /cvs/stx/stx/libbasic2/CacheDictionary.st,v 1.20 2002-11-29 11:09:14 cg Exp $'
   136     ^ '$Header: /cvs/stx/stx/libbasic2/CacheDictionary.st,v 1.21 2011-12-26 09:42:25 cg Exp $'
   138 ! !
   137 ! !