AddArrayNull decodes the JSON value within an object or an array to a UnmarshalerJSONArray.
(v interface{})
| 213 | |
| 214 | // AddArrayNull decodes the JSON value within an object or an array to a UnmarshalerJSONArray. |
| 215 | func (dec *Decoder) AddArrayNull(v interface{}) error { |
| 216 | return dec.ArrayNull(v) |
| 217 | } |
| 218 | |
| 219 | // Array decodes the JSON value within an object or an array to a UnmarshalerJSONArray. |
| 220 | func (dec *Decoder) Array(v UnmarshalerJSONArray) error { |