subsonic-tui/vendor/github.com/gdamore/encoding
Sagi Dayan a3923cf42c initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-03-29 17:56:39 +03:00
..
.appveyor.yml initial commit 2024-03-29 17:56:39 +03:00
ascii.go initial commit 2024-03-29 17:56:39 +03:00
charmap.go initial commit 2024-03-29 17:56:39 +03:00
CODE_OF_CONDUCT.md initial commit 2024-03-29 17:56:39 +03:00
doc.go initial commit 2024-03-29 17:56:39 +03:00
ebcdic.go initial commit 2024-03-29 17:56:39 +03:00
latin1.go initial commit 2024-03-29 17:56:39 +03:00
latin5.go initial commit 2024-03-29 17:56:39 +03:00
LICENSE initial commit 2024-03-29 17:56:39 +03:00
README.md initial commit 2024-03-29 17:56:39 +03:00
SECURITY.md initial commit 2024-03-29 17:56:39 +03:00
utf8.go initial commit 2024-03-29 17:56:39 +03:00

encoding

Linux Windows Apache License Coverage GoDoc

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.