You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All identifiers must be normalized to the NFC form.
Normalization is used to treat equally strings which consists of different codepoints but practiaclly the same.
It is useful when a program is linked to other Rust libraries,
NFC Normalization takes two steps:
Some kinds of characters are decomposed to one or multiple chatacters. (This is called NFD form)
Then, some kinds of chatacters are composed to a single character. (This is called NFC form)
Related to #2287
All identifiers must be normalized to the NFC form.
Normalization is used to treat equally strings which consists of different codepoints but practiaclly the same.
It is useful when a program is linked to other Rust libraries,
NFC Normalization takes two steps:
For example,
https://unicode.org/reports/tr15/images/UAX15-NormFig4.jpg
Implementation
Unicode data file parser
Decomposition
Composition
Optimization
Tests
many testcases are needed!
Ref
The text was updated successfully, but these errors were encountered: