func bytes.Split
11 uses
bytes (current package)
bytes.go#L392: func Split(s, sep []byte) [][]byte { return genSplit(s, sep, 0, -1) }
github.com/go-git/go-git/v5/plumbing/object
tag.go#L140: messageAndSig := bytes.Split(data, []byte("\n"))
github.com/go-git/go-git/v5/plumbing/protocol/packp
advrefs_decode.go#L244: chunks := bytes.Split(data, sp)
github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
list.go#L58: for _, data := range bytes.Split(raw, []byte{' '}) {
github.com/lib/pq/scram
scram.go#L157: fields := bytes.Split(in, []byte(","))
scram.go#L200: var fields = bytes.Split(in, []byte(","))
github.com/prometheus/procfs
crypto.go#L69: cryptoBlocks := bytes.Split(cryptoData, []byte("\n\n"))
zoneinfo.go#L90: zoneinfoBlocks := bytes.Split(zoneinfoData, []byte("\nNode"))
github.com/russross/blackfriday/v2
block.go#L299: splitData := bytes.Split(data, []byte("\n"))
github.com/yuin/goldmark/extension
table.go#L250: cols := bytes.Split(line, []byte{'|'})
golang.org/x/crypto/ssh
messages.go#L614: parts := bytes.Split(contents, comma)
 |
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. |