E R Mon, 12 Nov 2007 08:40:24 -0800
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); ???