Home | History | Annotate | Download | only in bytes

Lines Matching defs:Map

414 // Map returns a copy of the byte slice s with all its characters modified
418 func Map(mapping func(r rune) rune, s []byte) []byte {
476 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
479 func ToLower(s []byte) []byte { return Map(unicode.ToLower, s) }
482 func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
487 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
493 return Map(func(r rune) rune { return c.ToLower(r) }, s)
499 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
533 // Hackish but effective. Depends on Map scanning in order and calling
536 return Map(
648 // most-significant bit of the highest word, map to the full range of all