MCPcopy Create free account
hub / github.com/couchbase/fleece / writeBool

Method writeBool

Fleece/Core/Encoder.cc:248–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246 void Encoder::writeNull() {addSpecial(kSpecialValueNull);}
247 void Encoder::writeUndefined() {addSpecial(kSpecialValueUndefined);}
248 void Encoder::writeBool(bool b) {addSpecial(b ? kSpecialValueTrue : kSpecialValueFalse);}
249
250 void Encoder::writeInt(uint64_t i, bool isSmall, bool isUnsigned) {
251 if (isSmall) {

Callers 1

popMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected