(lhs, rhs vector.Any)
| 2435 | } |
| 2436 | |
| 2437 | func arithDivFloatConstConst(lhs, rhs vector.Any) vector.Any { |
| 2438 | lconst := vector.FloatValue(lhs, 0) |
| 2439 | rconst := vector.FloatValue(rhs, 0) |
| 2440 | return vector.NewConstFloat(lhs.Type(), lconst/rconst, lhs.Len()) |
| 2441 | } |
| 2442 | |
| 2443 | func arithModIntFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 2444 | l := lhs.(*vector.Int) |
nothing calls this directly
no test coverage detected