AddBytesK adds 'key=value' argument. Multiple values for the same key may be added.
(key []byte, value string)
| 206 | // |
| 207 | // Multiple values for the same key may be added. |
| 208 | func (a *Args) AddBytesK(key []byte, value string) { |
| 209 | a.args = appendArg(a.args, b2s(key), value, argsHasValue) |
| 210 | } |
| 211 | |
| 212 | // AddBytesV adds 'key=value' argument. |
| 213 | // |