(lhs, rhs vector.Any)
| 202 | } |
| 203 | |
| 204 | func arithAddIntConstConst(lhs, rhs vector.Any) vector.Any { |
| 205 | lconst := vector.IntValue(lhs, 0) |
| 206 | rconst := vector.IntValue(rhs, 0) |
| 207 | return vector.NewConstInt(lhs.Type(), lconst+rconst, lhs.Len()) |
| 208 | } |
| 209 | |
| 210 | func arithAddUintFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 211 | l := lhs.(*vector.Uint) |
nothing calls this directly
no test coverage detected