Delete removes the value at the compiled path. SYS-REQ-114
(data []byte)
| 201 | // Delete removes the value at the compiled path. |
| 202 | // SYS-REQ-114 |
| 203 | func (c CompiledPath) Delete(data []byte) []byte { |
| 204 | return Delete(data, c.parts...) |
| 205 | } |
| 206 | |
| 207 | // ArrayEach iterates over the array at the compiled path. |
| 208 | // SYS-REQ-114 |