in reply to Re^2: Problems with map(function, array)
in thread Problems with map(function, array)

The array is not exactly deleted, but the elements are reduced to empty strings:

DB<139> sub my_uc { my $c = shift; return uc($c); } DB<140> my_uc() DB<141> @a = map my_uc, a..c => ("", "", "")

keep in mind no argument means $c is undef!

Cheers Rolf