ArrayEach iterates over the array at the compiled path. SYS-REQ-114
(data []byte, cb func([]byte, ValueType, int, error))
| 207 | // ArrayEach iterates over the array at the compiled path. |
| 208 | // SYS-REQ-114 |
| 209 | func (c CompiledPath) ArrayEach(data []byte, cb func([]byte, ValueType, int, error)) (int, error) { |
| 210 | return ArrayEach(data, cb, c.parts...) |
| 211 | } |
| 212 | |
| 213 | // EachKey resolves the compiled path using EachKey. |
| 214 | // SYS-REQ-114 |
nothing calls this directly
no test coverage detected