Returning messages in Smalltalk
- by Zachary
I have a Dictionary of objects I have created in smalltalk, which I am iterating over by enumerating it based on the key/value pairs.
For value object in the dictionary, I am calling a method on that object. Based on certain conditions, I would like for this object to be able to add a new member to dictionary, and possibly delete another one.
…