| 1281 | bool operator!=(const SelfType& other) const { return !isEqual(other); } |
| 1282 | |
| 1283 | difference_type operator-(const SelfType& other) const { |
| 1284 | return other.computeDistance(*this); |
| 1285 | } |
| 1286 | |
| 1287 | /// Return either the index or the member name of the referenced value as a |
| 1288 | /// Value. |
nothing calls this directly
no test coverage detected