(lhs, rhs vector.Any)
| 608 | } |
| 609 | |
| 610 | func arithAddFloatConstConst(lhs, rhs vector.Any) vector.Any { |
| 611 | lconst := vector.FloatValue(lhs, 0) |
| 612 | rconst := vector.FloatValue(rhs, 0) |
| 613 | return vector.NewConstFloat(lhs.Type(), lconst+rconst, lhs.Len()) |
| 614 | } |
| 615 | |
| 616 | func arithSubIntFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 617 | l := lhs.(*vector.Int) |
nothing calls this directly
no test coverage detected