func strings.Map
19 uses
strings (current package)
strings.go#L456: func Map(mapping func(rune) rune, s string) string {
strings.go#L576: return Map(unicode.ToUpper, s)
strings.go#L606: return Map(unicode.ToLower, s)
strings.go#L611: func ToTitle(s string) string { return Map(unicode.ToTitle, s) }
strings.go#L616: return Map(c.ToUpper, s)
strings.go#L622: return Map(c.ToLower, s)
strings.go#L628: return Map(c.ToTitle, s)
strings.go#L715: return Map(
contrib.go.opencensus.io/exporter/prometheus
sanitize.go#L33: s = strings.Map(sanitizeRune, s)
contrib.go.opencensus.io/exporter/stackdriver
sanitize.go#L33: s = strings.Map(sanitizeRune, s)
github.com/google/go-cmp/cmp
report_slices.go#L162: normLine := strings.Map(func(r rune) rune {
github.com/lib/pq
conn.go#L1911: s := strings.Map(alnumLowerASCII, name)
go.opencensus.io/internal
sanitize.go#L33: s = strings.Map(sanitizeRune, s)
golang.org/x/net/html
parse.go#L1986: s := strings.Map(func(c rune) rune {
parse.go#L2036: s := strings.Map(func(c rune) rune {
parse.go#L2104: s := strings.Map(func(c rune) rune {
google.golang.org/protobuf/internal/impl
legacy_enum.go#L206: prefix := strings.Map(sanitize, t.PkgPath())
legacy_enum.go#L207: suffix := strings.Map(sanitize, t.Name())
google.golang.org/protobuf/internal/strs
strings.go#L74: s = strings.Map(func(r rune) rune {
 |
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. |