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

Method WriteInt64

test/perftest/misctest.cpp:549–556  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

547 }
548
549 bool WriteInt64(int64_t i64) {
550 if (i64 < 0) {
551 os_->Put('-');
552 i64 = -i64;
553 }
554 WriteUint64((uint64_t)i64);
555 return true;
556 }
557
558 bool WriteUint64(uint64_t u64) {
559 char buffer[20];

Callers

nothing calls this directly

Calls 1

PutMethod · 0.45

Tested by

no test coverage detected