This commit is contained in:
Kovid Goyal
2025-03-22 11:56:56 +05:30
parent 583a858769
commit 9663f935fb
2 changed files with 23 additions and 22 deletions

View File

@@ -1,32 +1,30 @@
package wcswidth
type GraphemeBreakProperty uint8
const (
GBP_AtStart GraphemeBreakProperty = iota
GBP_None
GBP_Prepend
GBP_CR
GBP_LF
GBP_Control
GBP_Extend
GBP_Regional_Indicator
GBP_SpacingMark
GBP_L
GBP_V
GBP_T
GBP_LV
GBP_LVT
GBP_ZWJ
GBP_AtStart GraphemeBreakProperty = iota
GBP_None
GBP_Prepend
GBP_CR
GBP_LF
GBP_Control
GBP_Extend
GBP_Regional_Indicator
GBP_SpacingMark
GBP_L
GBP_V
GBP_T
GBP_LV
GBP_LVT
GBP_ZWJ
)
type IndicConjunctBreak uint8
const (
ICB_None IndicConjunctBreak = iota
ICB_Linker
ICB_Consonant
ICB_Extend
ICB_None IndicConjunctBreak = iota
ICB_Linker
ICB_Consonant
ICB_Extend
)