Add associates value with key, appending it to any values already associated with key. The key is case-sensitive.
(key, value string)
| 37 | // Add associates value with key, appending it to any values already associated |
| 38 | // with key. The key is case-sensitive. |
| 39 | func (ms iniMultiSet) Add(key, value string) { |
| 40 | ms[key] = append(ms[key], value) |
| 41 | } |
| 42 | |
| 43 | // Set replaces the values associated with key. The key is case-sensitive. |
| 44 | func (ms iniMultiSet) Set(key string, values ...string) { |
no outgoing calls