Extended Wylie is referred to as THDL Extended Wylie or THDL Wylie
because a Japanese scholar has an "Extended Wylie" also. NFKD and NFD have a new brother, NFTHDL. I wish there weren't a need, but as my yet-to-be-put-into-CVS break-unicode-into-grapheme-clusters code demonstrates, the-need-is-there. forgive-me for the hyphens, it's late.
This commit is contained in:
parent
a42347b224
commit
8e8a23c6a6
4 changed files with 83 additions and 63 deletions
|
@ -40,6 +40,12 @@ public interface UnicodeConstants {
|
|||
static final byte NORM_NFD = 3;
|
||||
/** Refers to Normalization Form KD: */
|
||||
static final byte NORM_NFKD = 4;
|
||||
/** Refers to Normalization Form THDL, which is NFD except for
|
||||
<code>U+0F77</code> and <code>U+0F79</code>, which are
|
||||
normalized according to NFKD. This is the One True
|
||||
Normalization Form, as it leaves no precomposed codepoints and
|
||||
does not normalize <code>U+0F0C</code>. */
|
||||
static final byte NORM_NFTHDL = 5;
|
||||
|
||||
|
||||
/** for those times when you need a char to represent a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue