DESCR 920 B

12345678910111213141516171819
  1. Provides an adapter layer between core routines for converting to and
  2. from UTF8 and other encodings. In essence, a way to give multiple
  3. existing Unicode modules a single common interface so you don't have to
  4. know the underlying implementations to do simple UTF8 to-from other
  5. character set encoding conversions. As such, it wraps the
  6. Unicode::String, Unicode::Map8, Unicode::Map and Jcode modules in a
  7. standardized and simple API.
  8. This also provides general character set conversion operation based on
  9. UTF8 - it is possible to convert between any two compatible and
  10. supported character sets via a simple two step chaining of conversions.
  11. As with most things Perlish - if you give it a few big chunks of text to
  12. chew on instead of lots of small ones it will handle many more
  13. characters per second.
  14. By design, it can be easily extended to encompass any new charset
  15. encoding conversion modules that arrive on the scene.