func bytes.Map

8 uses

	bytes (current package)
		bytes.go#L574: func Map(mapping func(r rune) rune, s []byte) []byte {
		bytes.go#L676: 	return Map(unicode.ToUpper, s)
		bytes.go#L706: 	return Map(unicode.ToLower, s)
		bytes.go#L710: func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
		bytes.go#L715: 	return Map(c.ToUpper, s)
		bytes.go#L721: 	return Map(c.ToLower, s)
		bytes.go#L727: 	return Map(c.ToTitle, s)
		bytes.go#L794: 	return Map(