shad-go/externalsort/io.go

12 lines
154 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !change
package externalsort
type LineReader interface {
ReadLine() (string, error)
}
type LineWriter interface {
Write(l string) error
}