[Prev][Next][Index][Thread]

Q: member syntax in dylan?



Is there any intrinsic reason not to allow 'obj . member' syntax for methods
with more than one argument in dylan?

        e.g. obj . m ( o1 , o2 , o3 , o4 )

Is there any intrinsic reason against allowing definitions of methods
closely coupled with class definition?

        e.g. with <class>
                define method m1 ( a1 , a2 ) ... end
            end

        instead of

            define method m1 ( <class> this , a1 , a2 ) ... end

Please forgive all errors, I'm just starting to look at dylan for the first
time.

Roland





Follow-Ups: