MCPcopy
hub / github.com/docker/compose / writeQuoted

Function writeQuoted

pkg/compose/viz.go:137–141  ·  view source on GitHub ↗

writeQuoted writes "str" to builder

(builder *strings.Builder, str string)

Source from the content-addressed store, hash-verified

135
136// writeQuoted writes "str" to builder
137func writeQuoted(builder *strings.Builder, str string) {
138 builder.WriteByte('"')
139 builder.WriteString(str)
140 builder.WriteByte('"')
141}

Callers 3

VizMethod · 0.85
addNodesFunction · 0.85
addEdgesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected