(lhs, rhs vector.Any)
| 2053 | } |
| 2054 | |
| 2055 | func compareNEStringConstFlat(lhs, rhs vector.Any) vector.Any { |
| 2056 | lconst := vector.StringValue(lhs, 0) |
| 2057 | r := rhs.(*vector.String) |
| 2058 | n := lhs.Len() |
| 2059 | out := vector.NewFalse(n) |
| 2060 | for k := range n { |
| 2061 | if lconst != r.Value(k) { |
| 2062 | out.Set(k) |
| 2063 | } |
| 2064 | } |
| 2065 | return out |
| 2066 | } |
| 2067 | |
| 2068 | func compareNEStringConstDict(lhs, rhs vector.Any) vector.Any { |
| 2069 | lconst := vector.StringValue(lhs, 0) |
nothing calls this directly
no test coverage detected