![]() |
perl-unicode
|
Encode::encode_list ?2007-11-12 09:40:38I'm using Encode::encode() a lot, especially with lists as in:
@encoded = map { Encode::encode($encoding, $_) } @text;
Is there a way to make this more efficient, like perhaps with:
@encoded = Encode::encode_list($encoding, @text);
???
|
|
||||||||||||