This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Unicode: add ToFold mapping. Not used yet; but basically
authorJarkko Hietaniemi <jhi@iki.fi>
Fri, 2 Nov 2001 05:18:45 +0000 (05:18 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Fri, 2 Nov 2001 05:18:45 +0000 (05:18 +0000)
commitb4e400f9f0f3998e635cdce0c2d2e790cbe42caa
treeb638c44345271b6f0f9020e6ccc262fb9c21b4c5
parent18e548ce1d77b525add551f80ef335f852cf9389
Unicode: add ToFold mapping.  Not used yet; but basically
a more useful mapping for caseless aka case-ignoring than
doing either lc($a) eq lc($b) or uc($a) eq uc($b); the full
algorithm for creating the foldings uses equivalence classes,
see http://www.unicode.org/unicode/reports/tr21/
Hopefully this feature will be used in //i.
(The folding tables were introduced by #12689.)

p4raw-id: //depot/perl@12807
embed.h
embed.pl
embedvar.h
intrpvar.h
perl.c
perlapi.h
sv.c
utf8.c