IsNull returns true when v's underlying type is TypeNull.
()
| 241 | |
| 242 | // IsNull returns true when v's underlying type is TypeNull. |
| 243 | func (v Value) IsNull() bool { |
| 244 | return v.Type().ID() == IDNull |
| 245 | } |
| 246 | |
| 247 | // Copy returns a copy of v that shares no storage. |
| 248 | func (v Value) Copy() Value { |
no test coverage detected