| 364 | } |
| 365 | } |
| 366 | |
| 367 | return SimpleVector<T>::compare(other, index, otherIndex, flags); |
| 368 | } |
| 369 | |
| 370 | std::string toString() const { |
| 371 | if (valueVector_) { |
| 372 | return valueVector_->toString(index_); |
| 373 | } |
| 374 | |
| 375 | if (isNull_) { |
| 376 | return "null"; |
| 377 | } else { |
| 378 | return SimpleVector<T>::valueToString(value()); |
| 379 | } |
no test coverage detected