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

Method writeUInt

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

Source from the content-addressed store, hash-verified

262
263 void Encoder::writeInt(int64_t i) {writeInt(i, (i < 2048 && i >= -2048), false);}
264 void Encoder::writeUInt(uint64_t i) {writeInt(i, (i < 2048), true);}
265
266 void Encoder::writeDouble(double n) {
267 throwIf(std::isnan(n), InvalidData, "Can't write NaN");

Callers 1

popMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected