You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/vendor/github.com/gdamore/encoding
Simon Roberts 9a906c3a68
Migrate from termbox-go to tcell (#232)
Lots of new functionality including:
- mouse support: click select, scroll, menus, table-sorting, etc
- 24-bit color support in themes

Co-authored-by: Simon Roberts <simon.roberts@anz.com>
Co-authored-by: ѵµσɳɠ <3168632+vuon9@users.noreply.github.com>
3 years ago
..
.appveyor.yml Migrate from termbox-go to tcell (#232) 3 years ago
.travis.yml Migrate from termbox-go to tcell (#232) 3 years ago
LICENSE Migrate from termbox-go to tcell (#232) 3 years ago
README.md Migrate from termbox-go to tcell (#232) 3 years ago
ascii.go Migrate from termbox-go to tcell (#232) 3 years ago
charmap.go Migrate from termbox-go to tcell (#232) 3 years ago
doc.go Migrate from termbox-go to tcell (#232) 3 years ago
ebcdic.go Migrate from termbox-go to tcell (#232) 3 years ago
latin1.go Migrate from termbox-go to tcell (#232) 3 years ago
latin5.go Migrate from termbox-go to tcell (#232) 3 years ago
utf8.go Migrate from termbox-go to tcell (#232) 3 years ago

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.