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

Method writeFloat

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

Source from the content-addressed store, hash-verified

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);}
53
54 void writeString(const std::string &s) {writeString(slice(s));}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected