BTree.st
changeset 2487 5872274c4abd
parent 2466 33511e8d269c
child 2586 aa79488454ed
equal deleted inserted replaced
2486:81f58ca6c2e7 2487:5872274c4abd
   197 keysAndValuesDo: aBlock
   197 keysAndValuesDo: aBlock
   198 	root allLeavesDo: [:ea | ea keysAndValuesDo: aBlock]
   198 	root allLeavesDo: [:ea | ea keysAndValuesDo: aBlock]
   199 !
   199 !
   200 
   200 
   201 keysDo: aBlock
   201 keysDo: aBlock
   202 	root allLeavesDo: [:ea | ea keysDo: aBlock]
   202     "evaluate the argument, aBlock for every key in the collection."
       
   203 
       
   204     root allLeavesDo: [:ea | ea keysDo: aBlock]
       
   205 
       
   206     "Modified: / 24-08-2010 / 10:13:24 / cg"
   203 ! !
   207 ! !
   204 
   208 
   205 !BTree methodsFor:'initialize-release'!
   209 !BTree methodsFor:'initialize-release'!
   206 
   210 
   207 initializeWithKeys: aBTreeKeys
   211 initializeWithKeys: aBTreeKeys
   831 ! !
   835 ! !
   832 
   836 
   833 !BTree class methodsFor:'documentation'!
   837 !BTree class methodsFor:'documentation'!
   834 
   838 
   835 version_CVS
   839 version_CVS
   836     ^ '$Header: /cvs/stx/stx/libbasic2/BTree.st,v 1.7 2010-08-08 12:40:17 cg Exp $'
   840     ^ '$Header: /cvs/stx/stx/libbasic2/BTree.st,v 1.8 2010-08-24 08:28:45 cg Exp $'
   837 ! !
   841 ! !