will the iterator variable be available in map, grep, join...etc...

I was also wondering if the join syntax be extended in a way that it can
support preffix and suffix... what i have in mind ... not necesary but :
         #pair
join ($prefix => $suffix), @ary;

so :
my  $select = join (qq{<option value="$_">} => '</option>'), @ary;

or is better to stay like this :
my $select;
map { $select .= qq{<option value="$_">$_</option>} } @ary;

=====
iVAN
[EMAIL PROTECTED]
=====

Reply via email to