(a ...any)
| 99 | ) |
| 100 | |
| 101 | func println(a ...any) { |
| 102 | if debug || debugDecoder || debugEncoder { |
| 103 | log.Println(a...) |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | func printf(format string, a ...any) { |
| 108 | if debug || debugDecoder || debugEncoder { |
no outgoing calls
no test coverage detected
searching dependent graphs…