1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Encoding::FixLatin::XS
======================
This Perl module is an add-on for the `Encoding::FixLatin` module to provide an
implementation of the `fix_latin` algorithm written in C for significantly
improved performance. The
[documentation for Encoding::FixLatin](https://metacpan.org/pod/Encoding::FixLatin)
describes what the module does - this module does exactly the same thing but
faster.
To use this module, simply install it from CPAN:
cpanm Encoding::FixLatin::XS
and then use `Encoding::FixLatin` as normal. The XS implementation layer will
be used if it's available, otherwise the pure-Perl implementation will be used
as a fallback.
|