Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: map return to array reference

by davorg (Chancellor)
on Jan 24, 2007 at 17:06 UTC ( [id://596291]=note: print w/replies, xml ) Need Help??


in reply to map return to array reference

@{$self->_getGood()}

If $self->_getGood returns an array (or, indeed, a list) then there's no need to dereference it again.

I assume that '6' is the first item in the returned list.

my $files_to_send = map {"$stage/$_.pdf"} $self->_getGood();

But as you hint that you already know, you shouldn't be assigning that to a scalar, so you probably want:

my $files_to_send = [ map {"$stage/$_.pdf"} $self->_getGood() ];

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-23 20:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found