ToUpper maps the rune to lower case using unicode.ToLower
(r rune)
| 45 | |
| 46 | // ToUpper maps the rune to lower case using unicode.ToLower |
| 47 | func (Unicode) ToLower(r rune) rune { |
| 48 | return unicode.ToLower(r) |
| 49 | } |
| 50 | |
| 51 | // ToUpper maps the rune to upper case using unicode.ToUpper |
| 52 | func (Unicode) ToUpper(r rune) rune { |