()
| 580 | func (ns FalsyNullBool) IsZero() bool { return !ns.Valid || !ns.Bool } |
| 581 | func (ns NullString) IsZero() bool { return len(ns) == 0 } |
| 582 | func (ns NullTime) IsZero() bool { return time.Time(ns).IsZero() } |
| 583 | func (n MapStringInterface) IsZero() bool { return len(n) == 0 } |
| 584 | func (m JSONArrayRawMessage) IsZero() bool { return len(m) == 0 || string(m) == "[]" } |
| 585 | func (m JSONRawMessage) IsZero() bool { return len(m) == 0 || string(m) == "null" } |