MCPcopy Create free account
hub / github.com/Tencent/MMKV / writeInt64

Method writeInt64

Core/CodedOutputData.cpp:52–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52void CodedOutputData::writeInt64(int64_t value) {
53 this->writeRawVarint64(value);
54}
55
56void CodedOutputData::writeUInt64(uint64_t value) {
57 writeRawVarint64(static_cast<int64_t>(value));

Callers 2

setMethod · 0.80
writeRootObjectMethod · 0.80

Calls 1

writeRawVarint64Method · 0.95

Tested by

no test coverage detected