Interface gives you access to the underlying value.
()
| 475 | |
| 476 | // Interface gives you access to the underlying value. |
| 477 | func (v *Value) Interface() any { |
| 478 | if v.val.IsValid() { |
| 479 | return v.val.Interface() |
| 480 | } |
| 481 | return nil |
| 482 | } |
| 483 | |
| 484 | // EqualValueTo checks whether two values are containing the same value or object. |
| 485 | func (v *Value) EqualValueTo(other *Value) bool { |
no outgoing calls
no test coverage detected