IsNull returns true if the record wrapped by this object is nil.
()
| 41 | |
| 42 | // IsNull returns true if the record wrapped by this object is nil. |
| 43 | func (w *Record) IsNull() bool { |
| 44 | return w.record == nil |
| 45 | } |
| 46 | |
| 47 | // Is returns true if this wrapped record and another wrapped |
| 48 | // record have the same identifier, in other words if they |
no outgoing calls