in reply to Re: qw with anonomous list ref
in thread qw with anonomous list ref
Does anyone have any idea what would this be good for? I can't imagine any use for \(list).
The only thing that comes to mind is
In this case the$ref = \($hashref->{key}->{subkey});
would mean something totaly different ($ref would be a reference to an anonymous hash) and$ref = \{$hashref->{key}->{subkey}};
is not very clear.$ref = \$hashref->{key}->{subkey};
So are there any other uses?
Jenda
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: qw with anonomous list ref
by BrowserUk (Patriarch) on Oct 29, 2002 at 21:57 UTC | |
Re^3: qw with anonomous list ref
by Aristotle (Chancellor) on Oct 29, 2002 at 22:58 UTC | |
\(LIST) useful with DBI bind_columns
by blssu (Pilgrim) on Oct 30, 2002 at 12:59 UTC |