MCPcopy Create free account
hub / github.com/Tencent/rapidjson / String

Method String

example/filterkey/filterkey.cpp:34–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 bool Double(double d) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Double(d) && EndValue(); }
33 bool RawNumber(const Ch* str, SizeType len, bool copy) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.RawNumber(str, len, copy) && EndValue(); }
34 bool String (const Ch* str, SizeType len, bool copy) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.String (str, len, copy) && EndValue(); }
35
36 bool StartObject() {
37 if (filterValueDepth_ > 0) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected