(a, b *types.T, v volatility.V)
| 1589 | return makeCmpOpOverload(treecmp.LT, a, b, false, v) |
| 1590 | } |
| 1591 | func makeLeFn(a, b *types.T, v volatility.V) *CmpOp { |
| 1592 | return makeCmpOpOverload(treecmp.LE, a, b, false, v) |
| 1593 | } |
| 1594 | func makeIsFn(a, b *types.T, v volatility.V) *CmpOp { |
| 1595 | return makeCmpOpOverload(treecmp.IsNotDistinctFrom, a, b, true, v) |
| 1596 | } |
no test coverage detected
searching dependent graphs…