| 252 | |
| 253 | template<class T> |
| 254 | FixedArray<int> operator != (const StringArrayT<T> &a0, const StringArrayT<T> &a1) { |
| 255 | size_t len = a0.match_dimension(a1); |
| 256 | FixedArray<int> f(len); |
| 257 | const StringTableT<T> &t0 = a0.stringTable(); |
| 258 | const StringTableT<T> &t1 = a1.stringTable(); |
| 259 | for (size_t i=0;i<len;++i) { |
| 260 | f[i] = t0.lookup(a0[i])!=t1.lookup(a1[i]); |
| 261 | } |
| 262 | return f; |
| 263 | } |
| 264 | |
| 265 | template<class T> |
| 266 | FixedArray<int> operator != (const StringArrayT<T> &a0, const T &v1) { |
nothing calls this directly
no test coverage detected