ToLower maps the rune to lower case
(r rune)
| 58 | type Caser interface { |
| 59 | // ToLower maps the rune to lower case |
| 60 | ToLower(r rune) rune |
| 61 | // ToUpper maps the rune to upper case |
| 62 | ToUpper(r rune) rune |
| 63 | // ToTitle maps the rune to title case |
no outgoing calls