This commit is contained in:
Kovid Goyal 2025-03-25 13:45:56 +05:30
parent 61ae12e0a9
commit d429f732e1
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
3 changed files with 78 additions and 2 deletions

View file

@ -29,6 +29,40 @@ const (
ICB_Extend
)
type UnicodeCategory uint8
const (
UC_Cc UnicodeCategory = iota
UC_Zs
UC_Po
UC_Sc
UC_Ps
UC_Pe
UC_Sm
UC_Pd
UC_Nd
UC_Lu
UC_Sk
UC_Pc
UC_Ll
UC_So
UC_Lo
UC_Pi
UC_Cf
UC_No
UC_Pf
UC_Lt
UC_Lm
UC_Mn
UC_Me
UC_Mc
UC_Nl
UC_Zl
UC_Zp
UC_Cs
UC_Co
)
// Total number of bits used: 16
type CharProps uint16