AddSQLNullBool decodes the JSON value within an object or an array to an *sql.NullBool
(v *sql.NullBool)
| 138 | |
| 139 | // AddSQLNullBool decodes the JSON value within an object or an array to an *sql.NullBool |
| 140 | func (dec *Decoder) AddSQLNullBool(v *sql.NullBool) error { |
| 141 | return dec.SQLNullBool(v) |
| 142 | } |
| 143 | |
| 144 | // SQLNullBool decodes the JSON value within an object or an array to an *sql.NullBool |
| 145 | func (dec *Decoder) SQLNullBool(v *sql.NullBool) error { |
nothing calls this directly
no test coverage detected