Delete removes the value addressed by keys using c's parsing options. SYS-REQ-115
(data []byte, keys ...string)
| 70 | // Delete removes the value addressed by keys using c's parsing options. |
| 71 | // SYS-REQ-115 |
| 72 | func (c Config) Delete(data []byte, keys ...string) []byte { |
| 73 | result, _ := deleteFoundConfig(c, data, keys...) |
| 74 | return result |
| 75 | } |
| 76 | |
| 77 | // ArrayEach iterates over the addressed array using c's parsing options. |
| 78 | // SYS-REQ-115 |