Re: [Newbies] Is there a way to find examples of how a certain method is used?

2006-07-07 Thread Edward Stow
Murhpy, Perhaps you could describe what you want to achieve. The most common idiom for adding to a dictionary is #at:put: dict := Dictionary new. dict at: <> put: <>. <> can be any object and not be restricted to strings or symbols as is common in many other languages On 08/07/06, Murphy Ste

Re: [Newbies] Is there a way to find examples of how a certain method is used?

2006-07-07 Thread Yoshiki Ohshima
Murphy, > I am trying to find some good examples of how the Dictionary class is > used, particularly basic stuff like examples of how add: works. The > sender button in the SystemBrowser calls up about a million examples > of add: , but I don't see a way to filter by a specific class. I

[Newbies] Is there a way to find examples of how a certain method is used?

2006-07-07 Thread Murphy Stein
Hi All, I am trying to find some good examples of how the Dictionary class is used, particularly basic stuff like examples of how add: works. The sender button in the SystemBrowser calls up about a million examples of add: , but I don't see a way to filter by a specific class. Is there