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);

???

Reply via email to