(b *buffer, tag int, x string)
| 140 | } |
| 141 | |
| 142 | func encodeString(b *buffer, tag int, x string) { |
| 143 | encodeLength(b, tag, len(x)) |
| 144 | b.data = append(b.data, x...) |
| 145 | } |
| 146 | |
| 147 | func encodeStrings(b *buffer, tag int, x []string) { |
| 148 | for _, s := range x { |
no test coverage detected
searching dependent graphs…