ToLowerSpecial returns a copy of the Text t with all Unicode letters mapped to their lower case using the case mapping specified by c.
(c unicode.SpecialCase)
| 506 | // ToLowerSpecial returns a copy of the Text t with all Unicode letters mapped |
| 507 | // to their lower case using the case mapping specified by c. |
| 508 | func (t Text) ToLowerSpecial(c unicode.SpecialCase) Text { |
| 509 | return Text(strings.ToLowerSpecial(c, t.String())) |
| 510 | } |
| 511 | |
| 512 | // ToUpperSpecial returns a copy of the Text t with all Unicode letters mapped |
| 513 | // to their upper case using the case mapping specified by c. |