Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 2.19 KB

README.md

File metadata and controls

55 lines (44 loc) · 2.19 KB

bufio包函数列表

Variables

var (
	ErrInvalidUnreadByte = errors.New("bufio: invalid use of UnreadByte")
	ErrInvalidUnreadRune = errors.New("bufio: invalid use of UnreadRune")
	ErrBufferFull        = errors.New("bufio: buffer full")
	ErrNegativeCount     = errors.New("bufio: negative count")
)

type ReadWriter

type ReadWriter struct {
	*Reader
	*Writer
}

type Reader

type Reader struct {
	// contains filtered or unexported fields
}

type Writer

type Writer struct {
	// contains filtered or unexported fields
}