(lhs, rhs vector.Any)
| 2029 | } |
| 2030 | |
| 2031 | func arithDivIntConstConst(lhs, rhs vector.Any) vector.Any { |
| 2032 | lconst := vector.IntValue(lhs, 0) |
| 2033 | rconst := vector.IntValue(rhs, 0) |
| 2034 | return vector.NewConstInt(lhs.Type(), lconst/rconst, lhs.Len()) |
| 2035 | } |
| 2036 | |
| 2037 | func arithDivUintFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 2038 | l := lhs.(*vector.Uint) |
nothing calls this directly
no test coverage detected