Append value to the list of values for key.
(key, value string)
| 36 | |
| 37 | // Append value to the list of values for key. |
| 38 | func (args Args) Add(key, value string) { |
| 39 | args[key] = append(args[key], value) |
| 40 | } |
| 41 | |
| 42 | // Return the index of the next unescaped byte in s that is in the term set, or |
| 43 | // else the length of the string if no terminators appear. Additionally return |
no outgoing calls
no test coverage detected