(b *buffer, tag int, x []string)
| 145 | } |
| 146 | |
| 147 | func encodeStrings(b *buffer, tag int, x []string) { |
| 148 | for _, s := range x { |
| 149 | encodeString(b, tag, s) |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | func encodeBool(b *buffer, tag int, x bool) { |
| 154 | if x { |
no test coverage detected
searching dependent graphs…