(valueInterface ValueInterface)
| 70 | return areEqual(value, valueInterface) |
| 71 | } |
| 72 | func (value NullValue) IsEqual(valueInterface ValueInterface) bool { |
| 73 | return areEqual(value, valueInterface) |
| 74 | } |
| 75 | |
| 76 | // isSmallerThan implementations |
| 77 | func (value IntegerValue) isSmallerThan(secondValue ValueInterface) bool { |
nothing calls this directly
no test coverage detected