AddStringNull decodes the JSON value within an object or an array to a *string. If next key is not a JSON string nor null, InvalidUnmarshalError will be returned. If a `null` is encountered, gojay does not change the value of the pointer.
(v **string)
| 233 | // If next key is not a JSON string nor null, InvalidUnmarshalError will be returned. |
| 234 | // If a `null` is encountered, gojay does not change the value of the pointer. |
| 235 | func (dec *Decoder) AddStringNull(v **string) error { |
| 236 | return dec.StringNull(v) |
| 237 | } |
| 238 | |
| 239 | // String decodes the JSON value within an object or an array to a *string. |
| 240 | // If next key is not a JSON string nor null, InvalidUnmarshalError will be returned. |