func bytes.Map

8 uses

	bytes (current package)
		bytes.go#L554: func Map(mapping func(r rune) rune, s []byte) []byte {
		bytes.go#L642: 	return Map(unicode.ToUpper, s)
		bytes.go#L672: 	return Map(unicode.ToLower, s)
		bytes.go#L676: func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
		bytes.go#L681: 	return Map(c.ToUpper, s)
		bytes.go#L687: 	return Map(c.ToLower, s)
		bytes.go#L693: 	return Map(c.ToTitle, s)
		bytes.go#L760: 	return Map(