(lhs, rhs vector.Any)
| 2638 | } |
| 2639 | |
| 2640 | func arithModIntConstConst(lhs, rhs vector.Any) vector.Any { |
| 2641 | lconst := vector.IntValue(lhs, 0) |
| 2642 | rconst := vector.IntValue(rhs, 0) |
| 2643 | return vector.NewConstInt(lhs.Type(), lconst%rconst, lhs.Len()) |
| 2644 | } |
| 2645 | |
| 2646 | func arithModUintFlatFlat(lhs, rhs vector.Any) vector.Any { |
| 2647 | l := lhs.(*vector.Uint) |
nothing calls this directly
no test coverage detected