• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSE.mdH A D24-Aug-20181.1 KiB

README.mdH A D24-Aug-2018260

go.modH A D24-Aug-201835

iochan.goH A D24-Aug-2018874

iochan_test.goH A D24-Aug-2018420

README.md

1# iochan
2
3iochan is a Go library for treating `io` readers and writers like channels.
4This is useful when sometimes you wish to use `io.Reader` and such in `select`
5statements.
6
7## Installation
8
9Standard `go get`:
10
11```
12$ go get github.com/mitchellh/iochan
13```
14