(*Decoder)
| 231 | // UnmarshalerJSONArray is the interface to implement to decode a JSON Array. |
| 232 | type UnmarshalerJSONArray interface { |
| 233 | UnmarshalJSONArray(*Decoder) error |
| 234 | } |
| 235 | |
| 236 | // A Decoder reads and decodes JSON values from an input stream. |
no outgoing calls