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

Method writeInt

Fleece/Support/JSONEncoder.hh:49–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47 void writeBool(bool b) {comma(); _out.write(b ? "true"_sl : "false"_sl);}
48
49 void writeInt(int64_t i) {_writeInt("%lld", i);}
50 void writeUInt(uint64_t i) {_writeInt("%llu", i);}
51 void writeFloat(float f) {_writeFloat(f);}
52 void writeDouble(double d) {_writeFloat(d);}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected