Unicode-Normalize
view release on metacpan or search on metacpan
333435363738394041424344454647484950515253
}
}
our
$PACKAGE
=
'Unicode::Normalize, mkheader'
;
our
$prefix
=
"UNF_"
;
our
$structname
=
"${prefix}complist"
;
# Starting in v5.20, the tables in lib/unicore are built using the platform's
# native character set for code points 0-255.
*pack_U
= ($] ge 5.020)
?
sub
{
return
pack
(
'W*'
,
@_
).
pack
(
'U*'
); }
# The empty pack returns
# an empty UTF-8 string,
# so the effect is to
# force the return into
# being UTF-8.
:
sub
{
return
pack
(
'U*'
,
@_
); };
# %Canon and %Compat will be ($codepoint => $hexstring) after _U_stringify()
our
%Comp1st
;
# $codepoint => $listname : may be composed with a next char.
our
%CompList
;
# $listname,$2nd => $codepoint : composite
( run in 0.230 second using v1.01-cache-2.11-cpan-26ccb49234f )