Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tencent/rapidjson
/ WriteInt64
Method
WriteInt64
test/perftest/misctest.cpp:662–669 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
660
}
661
662
bool WriteInt64(int64_t i64) {
663
if (i64 < 0) {
664
os_->Put(
'-'
);
665
i64 = -i64;
666
}
667
WriteUint64((uint64_t)i64);
668
return true;
669
}
670
671
bool WriteUint64(uint64_t u64) {
672
char buffer[20];
Callers
nothing calls this directly
Calls
1
Put
Method · 0.45
Tested by
no test coverage detected