Documentation ¶
Overview ¶
Package unicode implements UTF-8 to CESU-8 and vice versa transformations.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Utf8ToCesu8Transformer implements the golang.org/x/text/transform/Transformer interface for UTF-8 to CESU-8 transformation. Utf8ToCesu8Transformer = new(utf8ToCesu8Transformer) // Cesu8ToUtf8Transformer implements the golang.org/x/text/transform/Transformer interface for CESU-8 to UTF-8 transformation. Cesu8ToUtf8Transformer = new(cesu8ToUtf8Transformer) // ErrInvalidUtf8 means that a transformer detected invalid UTF-8 data. ErrInvalidUtf8 = errors.New("Invalid UTF-8") // ErrInvalidCesu8 means that a transformer detected invalid CESU-8 data. ErrInvalidCesu8 = errors.New("Invalid CESU-8") )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.