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

Method writeUndefined

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

Source from the content-addressed store, hash-verified

245 void Encoder::addSpecial(int specVal) {new (placeItem()) Value(kSpecialTag, specVal);}
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) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected