Set.st
changeset 20356 0126bd94776d
parent 20236 b99be28d9875
child 20362 fea6b00ed63a
child 21348 6040a106c11f
equal deleted inserted replaced
20355:55b551788af6 20356:0126bd94776d
  1309 ! !
  1309 ! !
  1310 
  1310 
  1311 !Set methodsFor:'testing'!
  1311 !Set methodsFor:'testing'!
  1312 
  1312 
  1313 capacity 
  1313 capacity 
  1314     "return the number of elements, that the receiver is
  1314     "return the number of elements, that the receiver is prepared to take w.o. resizing.
  1315      prepared to take.
  1315      Notice, that Sets do automatically resize as required, 
       
  1316      so knowing the capacity is of no real use.
  1316      Not used by the system; added for ST-80 compatibility."
  1317      Not used by the system; added for ST-80 compatibility."
  1317 
  1318 
  1318     ^ keyArray size
  1319     ^ keyArray size
  1319 !
  1320 !
  1320 
  1321