Float 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)
| 462 | // Float decodes the JSON value within an object or an array to a *float64. |
| 463 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |
| 464 | func (dec *Decoder) Float(v *float64) error { |
| 465 | return dec.Float64(v) |
| 466 | } |
| 467 | |
| 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. |