kubernetes/vendor/golang.org/x/text/encoding/charmap/charmap.go

var ISO8859_6E

var ISO8859_6I

var ISO8859_8E

var ISO8859_8I

var iso8859_6E

var iso8859_6I

var iso8859_8E

var iso8859_8I

var All

type utf8Enc

type Charmap

// NewDecoder implements the encoding.Encoding interface.
func (m *Charmap) NewDecoder() *encoding.Decoder {}

// NewEncoder implements the encoding.Encoding interface.
func (m *Charmap) NewEncoder() *encoding.Encoder {}

// String returns the Charmap's name.
func (m *Charmap) String() string {}

// ID implements an internal interface.
func (m *Charmap) ID() (mib identifier.MIB, other string) {}

type charmapDecoder

func (m charmapDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {}

// DecodeByte returns the Charmap's rune decoding of the byte b.
func (m *Charmap) DecodeByte(b byte) rune {}

type charmapEncoder

func (m charmapEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {}

// EncodeRune returns the Charmap's byte encoding of the rune r. ok is whether
// r is in the Charmap's repertoire. If not, b is set to the Charmap's
// replacement byte. This is often the ASCII substitute character '\x1a'.
func (m *Charmap) EncodeRune(r rune) (b byte, ok bool) {}