func bytes.Cut

5 uses

	bytes (current package)
		bytes.go#L1374: func Cut(s, sep []byte) (before, after []byte, found bool) {

	encoding/pem
		pem.go#L142: 			key, val, ok := bytes.Cut(line, colon)

	net/http/internal
		chunked.go#L207: 	p, _, _ = bytes.Cut(p, semi)

	net/textproto
		reader.go#L554: 		k, v, ok := bytes.Cut(kv, colon)
		reader.go#L631: 		line, peek, _ = bytes.Cut(peek, nl)