bufio.Reader.lastByte (field)
12 uses
bufio (current package)
bufio.go#L37: lastByte int // last byte read for UnreadByte; -1 means invalid
bufio.go#L79: lastByte: -1,
bufio.go#L135: b.lastByte = -1
bufio.go#L218: b.lastByte = int(p[n-1])
bufio.go#L240: b.lastByte = int(b.buf[b.r-1])
bufio.go#L257: b.lastByte = int(c)
bufio.go#L267: if b.lastByte < 0 || b.r == 0 && b.w > 0 {
bufio.go#L277: b.buf[b.r] = byte(b.lastByte)
bufio.go#L278: b.lastByte = -1
bufio.go#L299: b.lastByte = int(b.buf[b.r-1])
bufio.go#L313: b.lastByte = -1
bufio.go#L365: b.lastByte = int(line[i])
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |