ArrayValueHandlerFunc is a function that implements ArrayValueHandler
func(data []byte) (p int, err error)
| 31 | |
| 32 | // ArrayValueHandlerFunc is a function that implements ArrayValueHandler |
| 33 | type ArrayValueHandlerFunc func(data []byte) (p int, err error) |
| 34 | |
| 35 | // HandleArrayValue implements ArrayValueHandler.HandleArrayValue |
| 36 | func (fn ArrayValueHandlerFunc) HandleArrayValue(data []byte) (int, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…