Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Aliasing values, not variables

by japhy (Canon)
on Jul 18, 2004 at 16:28 UTC ( [id://375394]=note: print w/replies, xml ) Need Help??


in reply to Aliasing values, not variables

Update: I forgot about the magic aliasing power of @_. See Corion's branch in this thread.
I believe part of the problem is that $array[$x] is not a lexical. Consider:
my @data = (1 .. 5); { local $data[2] = 100; print_data(); } print_data(); sub print_data { print "@data\n"; }
(Did you know you can use local() on elements in lexical aggregates?)

But moreso, because the elements in aggregates do not have symbols, I do not think they can be aliased. I would expect Perl 6 would make this possible.

_____________________________________________________
Jeff japhy Pinyan, P.L., P.M., P.O.D, X.S.: Perl, regex, and perl hacker
How can we ever be the sold short or the cheated, we who for every service have long ago been overpaid? ~~ Meister Eckhart

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://375394]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 09:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found