| 270 | } |
| 271 | |
| 272 | bool Equals(int64_t base_index, int64_t target_index) override { |
| 273 | const int64_t physical_base_index = FindPhysicalIndexOnBase(base_index); |
| 274 | const int64_t physical_target_index = FindPhysicalIndexOnTarget(target_index); |
| 275 | return inner_value_comparator_->Equals(physical_base_index, physical_target_index); |
| 276 | } |
| 277 | }; |
| 278 | |
| 279 | class ValueComparatorFactory { |
no outgoing calls
no test coverage detected