Encode::encode_list ?
[email protected] ("E R") Mon, 12 Nov 2007 10:38:56 -0600
| Newsgroups | perl.unicode |
|---|---|
| Message-ID | <[email protected]> |
I'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);
???