(h []argsKV, key, value []byte, noValue bool)
| 459 | } |
| 460 | |
| 461 | func appendArgBytes(h []argsKV, key, value []byte, noValue bool) []argsKV { |
| 462 | return appendArg(h, b2s(key), b2s(value), noValue) |
| 463 | } |
| 464 | |
| 465 | func appendArg(args []argsKV, key, value string, noValue bool) []argsKV { |
| 466 | var kv *argsKV |
no test coverage detected
searching dependent graphs…