Float64Null 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)
| 485 | // Float64Null decodes the JSON value within an object or an array to a *float64. |
| 486 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |
| 487 | func (dec *Decoder) Float64Null(v **float64) error { |
| 488 | err := dec.decodeFloat64Null(v) |
| 489 | if err != nil { |
| 490 | return err |
| 491 | } |
| 492 | dec.called |= 1 |
| 493 | return nil |
| 494 | } |
| 495 | |
| 496 | // Float32 decodes the JSON value within an object or an array to a *float64. |
| 497 | // If next key value overflows float64, an InvalidUnmarshalError error will be returned. |
no test coverage detected