It seems like you would like to access the pushdown stack of the $_ local values. That could be cool. However, you can do something like this yourself. I can show you the basics.
our @A; # declare a stack
*::A = *A{ARRAY}; # "Globalize" it if necessary.
sub pd (&;@) # <- block operator prototype indicating language sugar
{
# I would have really preferred to do a push here.
local @A = ( @A, $_ );
# pull the block argument
my $block = shift;
# Ensure at least one execution
@_ = $_ unless @_;
# + Scalar behavior option #1
# return $block->( local $_ = shift ) if not wantarray // 1;
# + Scalar behavior option #2
# unless ( wantarray // 1 ) {
# my $result;
# while ( @_ ) {
# local $_ = shift;
# return $result if defined( $result = $block->( $_ ));
# }
# return;
# }
# Standard filter logic
return map { $block->( $_ ) } @_;
}
And here is a simple list comprehension based on this:
my @comp
= map { pd { pd { join '', @A[-2,-1], $_ } qw<g h> } qw<d e f>; } qw<a b c>
;
Here's @comp:
@comp: [
'adg',
'adh',
'aeg',
'aeh',
'afg',
'afh',
'bdg',
'bdh',
'beg',
'beh',
'bfg',
'bfh',
'cdg',
'cdh',
'ceg',
'ceh',
'cfg',
'cfh'
]
use Storable 'clone';– Zaid Nov 18 '11 at 15:26$_. – korda Nov 18 '11 at 15:44$var = $_(or get that functionality). To me, that is a rather strange request, because A)$var = $_is already about as short as it gets, and B) there is no better way to make that assignment than using the equal sign. You are probably thinking of something specific, which is why I asked for an example. – TLP Nov 18 '11 at 18:00$_to make shorter programs and I was simply wondering if I can shorten assignment too. Post it as answer and I will accept it. – korda Nov 18 '11 at 23:55