diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-11-07 15:40:40 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-07 21:42:42 -0800 |
commit | 064c021db42d2f93255b1b950faa0b0274e9fb7e (patch) | |
tree | fa23a5568104524919d459895d4ad3bb5b4a2aa3 /global.sym | |
parent | 319009ee7672ef703a648cf106c84dbe6f5aabd5 (diff) | |
download | perl-064c021db42d2f93255b1b950faa0b0274e9fb7e.tar.gz |
utf8.c: Add function to create inversion of swash
This adds _swash_inversion_hash() which takes a mapping swash and returns
a hash that is the inverse relation. That is, given a code point, it
allows quick lookup of all code points that map to it.
The function is not for public use, as it will likely be revised, so is
not in the public API, and it's name begins with underscore.
It does not deal with multi-char mappings at this time, nor other swash
complications.
Diffstat (limited to 'global.sym')
-rw-r--r-- | global.sym | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/global.sym b/global.sym index 9e37876aab..95a232b362 100644 --- a/global.sym +++ b/global.sym @@ -17,6 +17,7 @@ # Perl_Gv_AMupdate Perl_PerlIO_context_layers +Perl__swash_inversion_hash Perl_amagic_call Perl_amagic_deref_call Perl_apply_attrs_string |