perl-unicode

Encode::encode_list ?

2007-11-12 09:40:38
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);

???

<Prev in Thread] Current Thread [Next in Thread>
  • Encode::encode_list ?, E R <=