AddFloat64Null decodes the JSON value within an object or an array to a *float64. If next key value overflows float64, an InvalidUnmarshalError error will be returned. If a `null` is encountered, gojay does not change the value of the pointer.
(v **float64)
| 443 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |
| 444 | // If a `null` is encountered, gojay does not change the value of the pointer. |
| 445 | func (dec *Decoder) AddFloat64Null(v **float64) error { |
| 446 | return dec.Float64Null(v) |
| 447 | } |
| 448 | |
| 449 | // AddFloat32 decodes the JSON value within an object or an array to a *float64. |
| 450 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |