MCPcopy Create free account
hub / github.com/Tencent/rapidjson / WriteInt64

Method WriteInt64

test/perftest/misctest.cpp:478–485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

476 }
477
478 bool WriteInt64(int64_t i64) {
479 if (i64 < 0) {
480 os_->Put('-');
481 i64 = -i64;
482 }
483 WriteUint64((uint64_t)i64);
484 return true;
485 }
486
487 bool WriteUint64(uint64_t u64) {
488 char buffer[20];

Callers

nothing calls this directly

Calls 1

PutMethod · 0.45

Tested by

no test coverage detected