MCPcopy Create free account
hub / github.com/NVIDIA-RTX/Donut / GetValueAsString

Method GetValueAsString

src/engine/ConsoleObjects.cpp:404–410  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

402 }
403
404 virtual std::string GetValueAsString() const override
405 {
406 char buff[16] = { 0 };
407 if (auto [p, ec] = std::to_chars(buff, buff+16, m_Data); ec == std::errc())
408 return std::string(buff);
409 return std::string();
410 }
411
412 // default accessors
413

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected