func strings.TrimLeft
10 uses
strings (current package)
strings.go#L999: func TrimLeft(s, cutset string) string {
github.com/jackc/pgx/v5/pgconn
config.go#L587: database := strings.TrimLeft(parsedURL.Path, "/")
config.go#L628: s = strings.TrimLeft(s[eqIdx+1:], " \t\n\r\v\f")
go/doc
example.go#L127: text = strings.TrimLeft(text, " ")
go/printer
nodes.go#L1116: x = strings.TrimLeft(x, "0_")
golang.org/x/tools/go/types/objectpath
objectpath.go#L626: rest := strings.TrimLeft(suffix, "0123456789")
google.golang.org/protobuf/internal/strs
strings.go#L181: s = strings.TrimLeft(s, "_")
net/http
pattern.go#L97: method, rest, found = s[:i], strings.TrimLeft(s[i+1:], " \t"), true
response.go#L173: resp.Status = strings.TrimLeft(status, " ")
text/template/parse
lex.go#L318: return Pos(len(s) - len(strings.TrimLeft(s, spaceChars)))