AddFloat64 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)
| 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. |
| 438 | func (dec *Decoder) AddFloat64(v *float64) error { |
| 439 | return dec.Float64(v) |
| 440 | } |
| 441 | |
| 442 | // AddFloat64Null decodes the JSON value within an object or an array to a *float64. |
| 443 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |