FloatNull 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.
(v **float64)
| 468 | // FloatNull decodes the JSON value within an object or an array to a *float64. |
| 469 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |
| 470 | func (dec *Decoder) FloatNull(v **float64) error { |
| 471 | return dec.Float64Null(v) |
| 472 | } |
| 473 | |
| 474 | // Float64 decodes the JSON value within an object or an array to a *float64. |
| 475 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |