On Wed, 27 Aug 2003, Leopold Toetsch wrote: > Dan Sugalski <[EMAIL PROTECTED]> wrote: > > > ...is operator overloading. Addition > > may not really be addition, if one or the other of the data in the > > operation overloads the addition operator. > > pdd02 has 7 vtable slots for C<add>. How will > > use overload '+' => \&my_add; > > look like in Parrot?
The perl compiler will have to fabricate a bunch of phantom functions. Not great, but this is already the case in perl 5 when using overloads, so it's not a big deal. Dan