Squeak Class Documentation category index | class index  
 
WeakValueDictionary
  category: Collections-Weak
  superclass: Dictionary
  subclasses:

I am a dictionary holding only weakly on my values. Clients may expect to get a nil value for any object they request.

instance methods
  accessing
  at:put:

  adding
  add:

class methods
  no messages
 

instance methods
  accessing top  
 

at:put:

Set the value at key to be anObject. If key is not found, create a new
entry for key and set is value to anObject. Answer anObject.


  adding top  
 

add:

Include newObject as one of the receiver's elements, but only if
not already present. Answer newObject.


class methods
  no messages top