piframe-go/vendor/github.com/gdamore/encoding
KemoNine a616ac6c56 Update vendoring for new ui 2020-08-28 15:19:36 -04:00
..
.appveyor.yml Update vendoring for new ui 2020-08-28 15:19:36 -04:00
.travis.yml Update vendoring for new ui 2020-08-28 15:19:36 -04:00
LICENSE Update vendoring for new ui 2020-08-28 15:19:36 -04:00
README.md Update vendoring for new ui 2020-08-28 15:19:36 -04:00
ascii.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00
charmap.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00
doc.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00
ebcdic.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00
go.mod Update vendoring for new ui 2020-08-28 15:19:36 -04:00
go.sum Update vendoring for new ui 2020-08-28 15:19:36 -04:00
latin1.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00
latin5.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00
utf8.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00

README.md

encoding

Linux Status Windows Status Apache License GoDoc Go Report Card

Package encoding provides a number of encodings that are missing from the standard Go encoding package.

We hope that we can contribute these to the standard Go library someday. It turns out that some of these are useful for dealing with I/O streams coming from non-UTF friendly sources.

The UTF8 Encoder is also useful for situations where valid UTF-8 might be carried in streams that contain non-valid UTF; in particular I use it for helping me cope with terminals that embed escape sequences in otherwise valid UTF-8.