write count copies of text to s
(s fmt.State, text string, count int)
| 218 | |
| 219 | // write count copies of text to s |
| 220 | func 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 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…