WriteLower uses caser to lower case the runes in s and writes to b
(b *strings.Builder, caser Caser, s string)
| 175 | |
| 176 | // WriteLower uses caser to lower case the runes in s and writes to b |
| 177 | func WriteLower(b *strings.Builder, caser Caser, s string) { |
| 178 | for _, r := range s { |
| 179 | b.WriteRune(caser.ToLower(r)) |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // WriteRune writes the runes to the b. |
| 184 | func WriteRune(b *strings.Builder, caser Caser, r rune) { |
searching dependent graphs…