MCPcopy Create free account
hub / github.com/chanced/caps / WriteSplitLowerFirstUpperRest

Function WriteSplitLowerFirstUpperRest

token/token.go:83–85  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

81// WriteLowerFirstUpperRest writes the first rune as upper case and the rest are
82// separated by sep and written as lower case
83func 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

Callers 1

Calls 1

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…