(data []byte)
| 27 | // ArrayValueHandler is a handler for values in a json array |
| 28 | type ArrayValueHandler interface { |
| 29 | HandleArrayValue(data []byte) (p int, err error) |
| 30 | } |
| 31 | |
| 32 | // ArrayValueHandlerFunc is a function that implements ArrayValueHandler |
no outgoing calls
no test coverage detected