AddSQLNullFloat64 decodes the JSON value within an object or an array to qn *sql.NullFloat64
(v *sql.NullFloat64)
| 118 | |
| 119 | // AddSQLNullFloat64 decodes the JSON value within an object or an array to qn *sql.NullFloat64 |
| 120 | func (dec *Decoder) AddSQLNullFloat64(v *sql.NullFloat64) error { |
| 121 | return dec.SQLNullFloat64(v) |
| 122 | } |
| 123 | |
| 124 | // SQLNullFloat64 decodes the JSON value within an object or an array to an *sql.NullFloat64 |
| 125 | func (dec *Decoder) SQLNullFloat64(v *sql.NullFloat64) error { |
nothing calls this directly
no test coverage detected