Values returns all values associated with the given key. The key is case-sensitive. The returned slice is not a copy.
(key string)
| 49 | // Values returns all values associated with the given key. |
| 50 | // The key is case-sensitive. The returned slice is not a copy. |
| 51 | func (ms iniMultiSet) Values(key string) []string { |
| 52 | return ms[key] |
| 53 | } |
| 54 | |
| 55 | // iniSectionSet represents the different sections in a pgBackRest config file. |
| 56 | type iniSectionSet map[string]iniMultiSet |