[Newbies] binary method or keyword with one argument

2008-09-28 Thread Mark Volkmann
Is there a rule of thumb for deciding whether a method that takes one argument should be implemented as a binary method or a keyword method? Do you only use binary when the method is like an mathematical operation? --- Mark Volkmann ___

Re: [Newbies] binary method or keyword with one argument

2008-09-28 Thread Bert Freudenberg
Am 28.09.2008 um 17:09 schrieb Mark Volkmann: Is there a rule of thumb for deciding whether a method that takes one argument should be implemented as a binary method or a keyword method? If in doubt, use keywords. Do you only use binary when the method is like an mathematical