Michael G Schwern wrote:
> I can't think of any reason why this feature is useful anymore, and it
> can be a really confusing behavior, so what say we kill it in Perl 6?
I've always thought is was pretty useful for implementing generic
redirectors. I wrote a frame system that allows instances to over-ride
class methods. The basic idea is
sub foo {
my $method = $_[0]{"_foo"} || $_[0]->can("_foo");
&{$method};
}
The only thing I'd like to change is to make &foo a tail call instead
of a normal function call. But I guess that would *really* confuse
people.
- Ken
- Expunge implicit @_ passing Michael G Schwern
- Re: Expunge implicit @_ passing Damian Conway
- Re: Expunge implicit @_ passing Ken Fox
- Re: Expunge implicit @_ passing Piers Cawley
- Re: Expunge implicit @_ passing John Porter
- Re: Expunge implicit @_ passing Michael G Schwern
- Re: Expunge implicit @_ passing John Porter
- Re: Expunge implicit @_ passing Michael G Schwern
- Re: Expunge implicit @_ passing Ken Fox
- RE: Expunge implicit @_ passing Garrett Goebel
- Re: Expunge implicit @_ passing Michael G Schwern
- Re: Expunge implicit @_ passing Michael G Schwern
- Re: Expunge implicit @_ passing David L. Nicol
