WriteLowerFirstUpperRest writes the first rune as upper case and the rest are separated by sep and written as lower case
(b *strings.Builder, caser Caser, sep string, s string)
| 81 | // WriteLowerFirstUpperRest writes the first rune as upper case and the rest are |
| 82 | // separated by sep and written as lower case |
| 83 | func WriteSplitLowerFirstUpperRest(b *strings.Builder, caser Caser, sep string, s string) { |
| 84 | WriteSplitLowerFirstUpperRestRunes(b, caser, sep, []rune(s)) |
| 85 | } |
| 86 | |
| 87 | // WriteSplitLowerFirstUpperRestRunes writes the first rune as upper case and |
| 88 | // the rest are separated by sep and written as lower case |
searching dependent graphs…