AddSQLNullFloat64Key adds a string to be encoded, must be used inside an object as it will encode a key
(key string, v *sql.NullFloat64)
| 227 | |
| 228 | // AddSQLNullFloat64Key adds a string to be encoded, must be used inside an object as it will encode a key |
| 229 | func (enc *Encoder) AddSQLNullFloat64Key(key string, v *sql.NullFloat64) { |
| 230 | enc.Float64Key(key, v.Float64) |
| 231 | } |
| 232 | |
| 233 | // AddSQLNullFloat64KeyOmitEmpty adds a string to be encoded or skips it if it is zero value. |
| 234 | // Must be used inside an object as it will encode a key |