MCPcopy Create free account
hub / github.com/bitfield/ftl-code / StringUppercaser

Struct StringUppercaser

20.3/mytypes.go:6–8  ·  view source on GitHub ↗

StringUppercaser wraps strings.Builder.

Source from the content-addressed store, hash-verified

4
5// StringUppercaser wraps strings.Builder.
6type StringUppercaser struct {
7 Contents strings.Builder
8}
9
10func (su StringUppercaser) ToUpper() string {
11 return strings.ToUpper(su.Contents.String())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected