func bytes.SplitN
6 uses
bytes (current package)
bytes.go#L375: func SplitN(s, sep []byte, n int) [][]byte { return genSplit(s, sep, 0, n) }
github.com/go-git/go-git/v5/plumbing/object
commit.go#L213: split := bytes.SplitN(line, []byte{' '}, 2)
tag.go#L111: split := bytes.SplitN(line, []byte{' '}, 2)
github.com/go-git/go-git/v5/plumbing/protocol/packp
advrefs_decode.go#L185: chunks := bytes.SplitN(l.line, null, 2)
github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
list.go#L59: pair := bytes.SplitN(data, []byte{'='}, 2)
github.com/golang/protobuf/proto
text_encode.go#L136: frags := bytes.SplitN(p, newline, newlines+1)
 |
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. |