initial commit
This commit is contained in:
22
bytechan_writer.go
Normal file
22
bytechan_writer.go
Normal file
@ -0,0 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"io"
|
||||
)
|
||||
|
||||
func NewWriterFromByteChan(ch chan byte) *ByteChanWriter {
|
||||
return &ByteChanWriter{ch}
|
||||
}
|
||||
|
||||
type ByteChanWriter struct {
|
||||
ch chan byte
|
||||
}
|
||||
|
||||
var _ io.Writer = &ByteChanWriter{}
|
||||
|
||||
func (w *ByteChanWriter) Write(p []byte) (n int, err error) {
|
||||
for _, b := range p {
|
||||
w.ch <- b
|
||||
}
|
||||
return len(p), nil
|
||||
}
|
Reference in New Issue
Block a user