MCPcopy Create free account
hub / github.com/bytedance/bolt / toString

Method toString

bolt/vector/ConstantVector.h:366–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }

Callers 1

toSummaryStringMethod · 0.45

Calls 2

valueToStringFunction · 0.85
toStringFunction · 0.70

Tested by

no test coverage detected