MCPcopy Create free account
hub / github.com/cockroachdb/apd / writeMultiple

Function writeMultiple

format.go:220–227  ·  view source on GitHub ↗

write count copies of text to s

(s fmt.State, text string, count int)

Source from the content-addressed store, hash-verified

218
219// write count copies of text to s
220func writeMultiple(s fmt.State, text string, count int) {
221 if len(text) > 0 {
222 b := []byte(text)
223 for ; count > 0; count-- {
224 s.Write(b)
225 }
226 }
227}

Callers 1

FormatMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…