in reply to Re^5: Unifying namespaces of @name and $name to simplify dereferencing? (declaration of typed references)
in thread Unifying namespaces of @name and $name to simplify dereferencing?
With a tied array it should be feasable to always access @$ref. ( well quite slow but good enough for a showcase.)
> And you can't magic your way out of it
These variables are scoped and easy to identify (at least lexicals) you can just replace every @arr with @$are at compile time or in a macro substitution.
> because sometimes only the stringified ref is kept (as the key of a hash).
I doubt that's documented or guaranteed behavior.
At least with stash variables you are free to change the reference by aliasing.
Just try *a=\@b; and see what \@a returns. :)
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!
furthermore this allows changing the underlying reference.
use 5.22.0; use feature qw/say refaliasing/; no warnings "experimental::refaliasing"; my @a=(1,2,3); my @b=(3,2,1); say \@a; \@a=\@b; say \@a;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Unifying namespaces of @name and $name to simplify dereferencing? (declaration of typed references)
by Eily (Monsignor) on Mar 28, 2016 at 12:17 UTC |