value represents a difference between values of any type
| 54 | |
| 55 | // value represents a difference between values of any type |
| 56 | type value struct { |
| 57 | val interface{} |
| 58 | mode Mode |
| 59 | } |
| 60 | |
| 61 | // Mode returns the value's mode |
| 62 | func (v value) Mode() Mode { |
nothing calls this directly
no outgoing calls
no test coverage detected