Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: How to force one variable to be an alias to another?

by jdporter (Paladin)
on Nov 26, 2006 at 21:33 UTC ( [id://586160]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Lexical::Alias;
    
    ...
    
    alias $that, $this;
    # $this is now an alias for $that.
    
  2. or download this
    alias @x, @y;
    alias %x, %y;
    
  3. or download this
    use Tie::Alias;
    
    ...
    
    tie $this, 'Tie::Alias', \$that;
    # $this is now an alias for $that.
    

Log In?
Username:
Password:

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

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

    No recent polls found