Documentation ¶
Index ¶
Constants ¶
View Source
const ( NULL = 0x00 BEL = 0x07 APB = 0x08 APF = 0x09 APD = 0x0A APU = 0x0B CS = 0x0C APR = 0x0D LS1 = 0x0E LS0 = 0x0F PAPF = 0x16 CAN = 0x18 SS2 = 0x19 ESC = 0x1B APS = 0x1C SS3 = 0x1D RS = 0x1E US = 0x1F SP = 0x20 DEL = 0x7F BKF = 0x80 RDF = 0x81 GRF = 0x82 YLF = 0x83 BLF = 0x84 MGF = 0x85 CNF = 0x86 WHF = 0x87 SSZ = 0x88 MSZ = 0x89 NSZ = 0x8A SZX = 0x8B COL = 0x90 FLC = 0x91 CDC = 0x92 POL = 0x93 WMM = 0x94 MACRO = 0x95 HLC = 0x97 RPC = 0x98 SPL = 0x99 STL = 0x9A CSI = 0x9B TIME = 0x9D CC1000 = 0xA0 // 10/0 CC1515 = 0xFF // 15/15 )
Control codes
Variables ¶
View Source
var XCSEncoding encoding.Encoding = &Encoding{ decoder: func() *encoding.Decoder { return &encoding.Decoder{Transformer: newXCSDecoder()} }, encoder: func() *encoding.Encoder { return &encoding.Encoder{Transformer: newXCSEncoder()} }, }
XCSEncoding is the ARIB External Character Set Encoding.
Functions ¶
This section is empty.
Types ¶
type Encoding ¶
type Encoding struct {
// contains filtered or unexported fields
}
Encoding is an implementation of the Encoding interface.
func (*Encoding) NewDecoder ¶
NewDecoder returns a Decoder.
func (*Encoding) NewEncoder ¶
NewEncoder returns an Encoder.
Click to show internal directories.
Click to hide internal directories.