func bytes.IndexByte
15 uses
bytes (current package)
buffer.go#L440: i := IndexByte(b.buf[b.off:], delim)
bytes.go#L95: func IndexByte(b []byte, c byte) int {
bytes.go#L163: return IndexByte(s, byte(r))
bytes.go#L1268: return IndexByte(s, sep[0])
bytes.go#L1290: o := IndexByte(s[i+1:t], c0)
bytes.go#L1319: o := IndexByte(s[i+1:t], c0)
bufio
bufio.go#L354: if i := bytes.IndexByte(b.buf[b.r+s:b.w], delim); i >= 0 {
scan.go#L354: if i := bytes.IndexByte(data, '\n'); i >= 0 {
crypto/rsa
pss.go#L162: psLen := bytes.IndexByte(db, 0x01)
encoding/pem
pem.go#L41: i := bytes.IndexByte(data, '\n')
github.com/go-faster/jx
dec_float.go#L309: dotPos := bytes.IndexByte(str, '.')
net/http
h2_bundle.go#L3134: i := bytes.IndexByte(b, ' ')
net/http/internal
chunked.go#L92: return bytes.IndexByte(peek, '\n') >= 0
net/textproto
reader.go#L590: if bytes.IndexByte(line, ':') < 0 {
regexp
regexp.go#L679: if bytes.IndexByte(repl, '$') >= 0 {
|
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |