1 Unicode/Collate version 0.20
2 ===============================
4 Unicode::Collate - Unicode Collation Algorithm
7 http://www.unicode.org/unicode/reports/tr10/
9 Fetch the following file and put it into the Unicode/Collate directory.
10 http://www.unicode.org/unicode/reports/tr10/allkeys.txt
12 You can install this module using a subset "keys.txt"
13 contained in this distribution without the "allkeys.txt";
14 but "keys.txt" is small and not very useful.
21 $Collator = Unicode::Collate->new(%tailoring);
24 @sorted = $Collator->sort(@not_sorted);
27 $result = $Collator->cmp($a, $b); # returns 1, 0, or -1.
28 $result = $Collator->eq($a, $b); # returns true/false
29 (similarly ->ne, ->lt, ->le, ->gt, ->ge)
35 To install this module type the following:
44 The conformant collation requires Unicode::Normalize (v 0.10 or later)
45 although Unicode::Collate can be used without Unicode::Normalize.
49 SADAHIRO Tomoyuki <bqw10602@nifty.com>
51 http://homepage1.nifty.com/nomenclator/perl/
53 Copyright(C) 2001-2002, SADAHIRO Tomoyuki. Japan. All rights reserved.
55 This library is free software; you can redistribute it
56 and/or modify it under the same terms as Perl itself.