AddFloatNull 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)
| 430 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |
| 431 | // If a `null` is encountered, gojay does not change the value of the pointer. |
| 432 | func (dec *Decoder) AddFloatNull(v **float64) error { |
| 433 | return dec.Float64Null(v) |
| 434 | } |
| 435 | |
| 436 | // AddFloat64 decodes the JSON value within an object or an array to a *float64. |
| 437 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |