func bytes.Map

8 uses

	bytes (current package)
		bytes.go#L611: func Map(mapping func(r rune) rune, s []byte) []byte {
		bytes.go#L723: 	return Map(unicode.ToUpper, s)
		bytes.go#L753: 	return Map(unicode.ToLower, s)
		bytes.go#L757: func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
		bytes.go#L762: 	return Map(c.ToUpper, s)
		bytes.go#L768: 	return Map(c.ToLower, s)
		bytes.go#L774: 	return Map(c.ToTitle, s)
		bytes.go#L841: 	return Map(