Lingua::JA::Sort::JIS version 0.04
================

SYNOPSIS

A perl module compares and sorts a list of UTF-8 strings
using JIS X 4061, "the collation of Japanese character strings".

OOP:
    use Lingua::JA::Sort::JIS;
    $jis = Lingua::JA::Sort::JIS->new($level, $class)
    @sorted = $jis->jsort(@strings);

    # $level : the collation level, 1 to 5.
    # $class : the kanji class, 1 to 3.

not-OOP:
    Lingua::JA::Sort::JIS qw(jsort)
    @sorted = jsort(@strings);

  * In the not-OOP syntax, you are not allowed to change
    $level and $class for the present.
    Instead of it, use msort, bsort, xsort, fsort.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

perl

COPYRIGHT AND LICENCE

This program is free software; you can redistribute it and/or 
modify it under the same terms as Perl itself.

Copyright (C) 2001, SADAHIRO Tomoyuki. Japan. All rights reserved.

NOTE

elements/elements.pl.txt makes elements.txt,
a list of the collation elements,
but this script requires 5.006 and uses Unicode::CharName.

Or get it from http://homepage1.nifty.com/nomenclator/perl/elements.zip
