(lhs, rhs vector.Any)
| 1217 | } |
| 1218 | |
| 1219 | func arithSubFloatConstConst(lhs, rhs vector.Any) vector.Any { |
| 1220 | lconst := vector.FloatValue(lhs, 0) |
| 1221 | rconst := vector.FloatValue(rhs, 0) |
| 1222 | return vector.NewConstFloat(lhs.Type(), lconst-rconst, lhs.Len()) |
| 1223 | } |
| 1224 | |
| 1225 | func arithMulIntFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 1226 | l := lhs.(*vector.Int) |
nothing calls this directly
no test coverage detected