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

Method writeUInt32

Core/CodedOutputData.cpp:68–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68void CodedOutputData::writeUInt32(uint32_t value) {
69 writeRawVarint32(static_cast<int32_t>(value));
70}
71
72void CodedOutputData::writeBool(bool value) {
73 this->writeRawByte(static_cast<uint8_t>(value ? 1 : 0));

Callers 6

setMethod · 0.80
doOverrideDataWithKeyMethod · 0.80
memmoveDictionaryFunction · 0.80
fullWriteBackWholeDataFunction · 0.80
writeRootObjectMethod · 0.80
getEncodeDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected