func strings.CutPrefix
6 uses
strings (current package)
strings.go#L1286: func CutPrefix(s, prefix string) (after string, found bool) {
go/ast
ast.go#L1123: if rest, ok := strings.CutPrefix(line, prefix); ok {
go/build
build.go#L186: after, found := strings.CutPrefix(dir, root)
go/printer
comment.go#L39: after, found := strings.CutPrefix(c.Text, "//")
net/http
server.go#L529: if kk, found := strings.CutPrefix(k, TrailerPrefix); found {
net/http/pprof
pprof.go#L387: if name, found := strings.CutPrefix(r.URL.Path, "/debug/pprof/"); found {