Set replaces the value addressed by keys using c's parsing options. SYS-REQ-115
(data []byte, value []byte, keys ...string)
| 64 | // Set replaces the value addressed by keys using c's parsing options. |
| 65 | // SYS-REQ-115 |
| 66 | func (c Config) Set(data []byte, value []byte, keys ...string) ([]byte, error) { |
| 67 | return setConfig(c, data, value, keys...) |
| 68 | } |
| 69 | |
| 70 | // Delete removes the value addressed by keys using c's parsing options. |
| 71 | // SYS-REQ-115 |