(lhs, rhs vector.Any)
| 811 | } |
| 812 | |
| 813 | func arithSubIntConstConst(lhs, rhs vector.Any) vector.Any { |
| 814 | lconst := vector.IntValue(lhs, 0) |
| 815 | rconst := vector.IntValue(rhs, 0) |
| 816 | return vector.NewConstInt(lhs.Type(), lconst-rconst, lhs.Len()) |
| 817 | } |
| 818 | |
| 819 | func arithSubUintFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 820 | l := lhs.(*vector.Uint) |
nothing calls this directly
no test coverage detected