func strings.TrimFunc
9 uses
strings (current package)
strings.go#L752: func TrimFunc(s string, f func(rune) bool) string {
strings.go#L840: return TrimFunc(s, makeCutsetFunc(cutset))
strings.go#L875: return TrimFunc(s[start:], unicode.IsSpace)
strings.go#L887: return TrimFunc(s[start:stop], unicode.IsSpace)
github.com/aws/aws-sdk-go/internal/ini
literal_tokens.go#L293: return strings.TrimFunc(string(v.raw), isTrimmable)
literal_tokens.go#L298: return strings.TrimFunc(string(v.raw), isTrimmable)
github.com/google/go-cmp/cmp
report_reflect.go#L321: isTripleQuoted = !strings.HasPrefix(strings.TrimPrefix(line, prefix), `"""`) && !strings.HasPrefix(line, "...") && strings.TrimFunc(line, isPrintable) == "" && len(line) <= maxLen
report_slices.go#L171: isTripleQuoted = !strings.HasPrefix(line, `"""`) && !strings.HasPrefix(line, "...") && strings.TrimFunc(line, isPrintable) == ""
golang.org/x/pkgsite/internal/postgres
searchdoc.go#L143: s = strings.TrimFunc(s, unicode.IsPunct)
 |
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. |