func bytes.Map

8 uses

	bytes (current package)
		bytes.go#L550: func Map(mapping func(r rune) rune, s []byte) []byte {
		bytes.go#L638: 	return Map(unicode.ToUpper, s)
		bytes.go#L668: 	return Map(unicode.ToLower, s)
		bytes.go#L672: func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
		bytes.go#L677: 	return Map(c.ToUpper, s)
		bytes.go#L683: 	return Map(c.ToLower, s)
		bytes.go#L689: 	return Map(c.ToTitle, s)
		bytes.go#L755: 	return Map(