(lhs, rhs vector.Any)
| 683 | } |
| 684 | |
| 685 | func compareEQFloatConstView(lhs, rhs vector.Any) vector.Any { |
| 686 | lconst := vector.FloatValue(lhs, 0) |
| 687 | rd := rhs.(*vector.View) |
| 688 | r := rd.Any.(*vector.Float) |
| 689 | rx := rd.Index |
| 690 | n := lhs.Len() |
| 691 | out := vector.NewFalse(n) |
| 692 | for k := range n { |
| 693 | if lconst == r.Value(uint32(rx[k])) { |
| 694 | out.Set(k) |
| 695 | } |
| 696 | } |
| 697 | return out |
| 698 | } |
| 699 | |
| 700 | func compareEQFloatConstConst(lhs, rhs vector.Any) vector.Any { |
| 701 | lconst := vector.FloatValue(lhs, 0) |
nothing calls this directly
no test coverage detected