SQLNullBool adds a string to be encoded, must be used inside an object as it will encode a key
(v *sql.NullBool)
| 338 | |
| 339 | // SQLNullBool adds a string to be encoded, must be used inside an object as it will encode a key |
| 340 | func (enc *Encoder) SQLNullBool(v *sql.NullBool) { |
| 341 | enc.Bool(v.Bool) |
| 342 | } |
| 343 | |
| 344 | // SQLNullBoolOmitEmpty adds a string to be encoded, must be used inside an object as it will encode a key |
| 345 | func (enc *Encoder) SQLNullBoolOmitEmpty(v *sql.NullBool) { |