Add adds 'key=value' argument. Multiple values for the same key may be added.
(key, value string)
| 199 | // |
| 200 | // Multiple values for the same key may be added. |
| 201 | func (a *Args) Add(key, value string) { |
| 202 | a.args = appendArg(a.args, key, value, argsHasValue) |
| 203 | } |
| 204 | |
| 205 | // AddBytesK adds 'key=value' argument. |
| 206 | // |