in reply to Re^2: Splitting on tabs then removing extra white space with map
in thread Splitting on tabs then removing extra white space with map

In what situation would it be a strength? map is usually used as
my @new = map { ... } @old;

By changing $_, you *also* change @old in non-obvious manner.