Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re:x3 Assign a reference to a non reference

by grinder (Bishop)
on Oct 03, 2002 at 14:02 UTC ( [id://202520]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Assign a reference to a non reference
in thread Assign a reference to a non reference

You just can't do it. Look at it from the other end, you're trying to return two lists. To assign them to two variables without using a temporary you must do a listwise assignment of the returned values. This means your code is going to look something like

my (%baz, @bar) = foo();

But that doesn't work with Perl, the two lists are flattened, and the first variable is in a winner-take-all situation. @bar gets nothing. At first I thought it was simply a matter of coercing on the fly

my (%baz, @bar) = sub { %{$_[0]}, @{$_[1]} }->(foo());

But that still doesn't work. To understand, have a look at what adding the following does:

use Data::Dumper; sub foo { return ({J=>'A', P=>'H', }, [4.019,5.8]); } # ... original listy assignment here ... print Dumper(\%baz);

There is a way around the problem of course, and that is to use references henceforth:

my ($baz, $bar) = foo(); print "$baz->{J} $bar->[1]\n";

This will do what you want, at the expense of having to dereference via ->. This may or may not be a problem to retrofit into your project.


print@_{sort keys %_},$/if%_=split//,'= & *a?b:e\f/h^h!j+n,o@o;r$s-t%t#u'

Log In?
Username:
Password:

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

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

    No recent polls found